
TCU Sports Now is live from Lupton Stadium tonight, broadcasting before the Frogs’ conference game against Kansas State. The pregame show begins at 5:30 p.m. Watch it live above.
var fitLivestream = function() {
var containerWidth = parseInt(jQuery(‘#live-video’).width());
var newHeight = containerWidth / 1.77;
var video = jQuery(‘#live-video’).find(‘iframe’);
video.height(newHeight);
video.width(containerWidth);
video.attr(‘src’, ‘https://new.livestream.com/accounts/3890273/events/2968540/player?width=’ + containerWidth + ‘&height=’ + newHeight + ‘&autoPlay=true&mute=false’);
}
jQuery(document).ready(function() {
fitLivestream();
jQuery(window).resize(_.debounce(fitLivestream));
});