//
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([['Country In The Park: Billy Currington, Koe Wetzel & John Morgan (Time: TBD) - Saturday','California Exposition & State Fair','Sacramento, CA','Saturday','5/17/2025','12:00 PM','6884535','Country-In-The-Park--Billy-Currington--Koe-Wetzel---John-Morgan--Time--TBD----Saturday-5-17-2025'],['Tailgate N Tallboys Music Festival: Koe Wetzel, Hardy, Cody Johnson & Bailey Zimmerman - 4 Day Pass','McLean County Fairgrounds','Bloomington, IL','Thursday','6/12/2025','TBD','6804382','Tailgate-N-Tallboys-Music-Festival--Koe-Wetzel--Hardy--Cody-Johnson---Bailey-Zimmerman---4-Day-Pass-6-12-2025'],['Tailgate N Tallboys Music Festival: Koe Wetzel, Gavin Adcock, Ole 60 & Hudson Westbrook - Thursday','McLean County Fairgrounds','Bloomington, IL','Thursday','6/12/2025','12:00 PM','6804383','Tailgate-N-Tallboys-Music-Festival--Koe-Wetzel--Gavin-Adcock--Ole-60---Hudson-Westbrook---Thursday-6-12-2025'],['Morgan Wallen, Corey Kent & Koe Wetzel','NRG Stadium','Houston, TX','Friday','6/20/2025','5:30 PM','6952278','Morgan-Wallen--Corey-Kent---Koe-Wetzel-6-20-2025'],['Morgan Wallen, Corey Kent & Koe Wetzel','NRG Stadium','Houston, TX','Saturday','6/21/2025','5:30 PM','6952279','Morgan-Wallen--Corey-Kent---Koe-Wetzel-6-21-2025'],['98.5 Kygo Birthday Bash: Koe Wetzel','Fiddlers Green Amphitheatre','Englewood, CO','Sunday','7/6/2025','4:00 PM','7033163','98-5-Kygo-Birthday-Bash--Koe-Wetzel-7-6-2025'],['Calgary Stampede Rodeo: Koe Wetzel','GMC Stadium - Calgary','Calgary, Canada','Monday','7/7/2025','7:30 PM','6569151','Calgary-Stampede-Rodeo--Koe-Wetzel-7-7-2025'],['Country Boom: Koe Wetzel, Nate Smith, Lil Jon & Kameron Marlowe - 3 Day Pass','Country Boom Grounds','West Salem, WI','Thursday','7/10/2025','TBD','6856699','Country-Boom--Koe-Wetzel--Nate-Smith--Lil-Jon---Kameron-Marlowe---3-Day-Pass-7-10-2025'],['Windy City Smokeout Festival: Bailey Zimmerman, Old Dominion, Kane Brown & Jon Pardi - 4 Day Pass','Windy City Smokeout','Chicago, IL','Thursday','7/10/2025','TBD','6698339','Windy-City-Smokeout-Festival--Bailey-Zimmerman--Old-Dominion--Kane-Brown---Jon-Pardi---4-Day-Pass-7-10-2025'],['Windy City Smokeout Festival: Bailey Zimmerman & Koe Wetzel - Thursday','Windy City Smokeout','Chicago, IL','Thursday','7/10/2025','2:00 PM','6698340','Windy-City-Smokeout-Festival--Bailey-Zimmerman---Koe-Wetzel---Thursday-7-10-2025']],'Koe Wetzel','https://www.ticketnetwork.com');