//
var TN_Widget = function() {
var months = ["", "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
return {
newWindow : true,
CreateEventRow : function(row, isAlt) {
var t = row[4].split("/");
t[0] = months[t[0]];
t[2] = ", " + t[2];
return "
" +
t[0] + " " + "" + t[1] + "" +
t[2] + " " +
row[3].substring(0,3) + " " +
row[5] + " | " +
row[0] + " " +
row[1] + " - " +
row[2] + " | " + this.btnText + "" +
" |
";
},
AddCss: function(cssUrl) {
var fileref=document.createElement("link");
fileref.setAttribute("rel", "stylesheet");
fileref.setAttribute("type", "text/css");
fileref.setAttribute("href", cssUrl);
document.getElementsByTagName("head")[0].appendChild(fileref);
},
CreateTable : function(eventData,kwds,url) {
if(typeof(TN_SetWidgetOptions) == "function")
TN_SetWidgetOptions();
//for backwards compatability
var newTable = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newTable.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
var footerLink = "";
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else if(document.querySelector(".tnpl_results_container") != null) {
document.querySelector(".tnpl_results_container").innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else
document.write("" + newTable.join('') + "" + footerLink + "
");
}
};
}();
//BPW-TNSERV-01A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Florida Gators vs. Long Island University Sharks','Ben Hill Griffin Stadium','Gainesville, FL','Saturday','8/30/2025','TBD','6878488','Florida-Gators-vs--Long-Island-University-Sharks-8-30-2025'],['Florida Gators vs. South Florida Bulls','Ben Hill Griffin Stadium','Gainesville, FL','Saturday','9/6/2025','TBD','6878489','Florida-Gators-vs--South-Florida-Bulls-9-6-2025'],['LSU Tigers vs. Florida Gators','Tiger Stadium - Baton Rouge','Baton Rouge, LA','Saturday','9/13/2025','TBD','6878881','LSU-Tigers-vs--Florida-Gators-9-13-2025'],['Miami Hurricanes vs. Florida Gators','Hard Rock Stadium','Miami Gardens, FL','Saturday','9/20/2025','TBD','6797463','Miami-Hurricanes-vs--Florida-Gators-9-20-2025'],['Texas A&M Aggies vs. Florida Gators','Kyle Field','College Station, TX','Saturday','10/11/2025','TBD','6879007','Texas-A-M-Aggies-vs--Florida-Gators-10-11-2025'],['PARKING: Texas A&M Aggies vs. Florida Gators','Kyle Field Parking Lots','College Station, TX','Saturday','10/11/2025','TBD','6879008','PARKING--Texas-A-M-Aggies-vs--Florida-Gators-10-11-2025'],['Florida Gators vs. Mississippi State Bulldogs','Ben Hill Griffin Stadium','Gainesville, FL','Saturday','10/18/2025','TBD','6878491','Florida-Gators-vs--Mississippi-State-Bulldogs-10-18-2025'],['Georgia Bulldogs vs. Florida Gators','EverBank Stadium','Jacksonville, FL','Saturday','11/1/2025','TBD','6804361','Georgia-Bulldogs-vs--Florida-Gators-11-1-2025'],['PARKING: Kentucky Wildcats vs. Florida Gators','Kroger Field Parking Lots','Lexington, KY','Saturday','11/8/2025','TBD','6878917','PARKING--Kentucky-Wildcats-vs--Florida-Gators-11-8-2025'],['Kentucky Wildcats vs. Florida Gators','Kroger Field','Lexington, KY','Saturday','11/8/2025','TBD','6878909','Kentucky-Wildcats-vs--Florida-Gators-11-8-2025'],['Mississippi Rebels vs. Florida Gators','Vaught Hemingway Stadium','Oxford, MS','Saturday','11/15/2025','TBD','6878927','Mississippi-Rebels-vs--Florida-Gators-11-15-2025'],['Florida Gators vs. Tennessee Volunteers','Ben Hill Griffin Stadium','Gainesville, FL','Saturday','11/22/2025','TBD','6878492','Florida-Gators-vs--Tennessee-Volunteers-11-22-2025'],['Florida Gators vs. Florida State Seminoles','Ben Hill Griffin Stadium','Gainesville, FL','Saturday','11/29/2025','TBD','6878493','Florida-Gators-vs--Florida-State-Seminoles-11-29-2025']],'','https://www.ticketnetwork.com');