//
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([['Hop Country Music Festival: .38 Special, Generation Radio & Englewood Heights - Friday','Sozo Sports Complex','Yakima, WA','Friday','9/12/2025','5:30 PM','7299257','Hop-Country-Music-Festival---38-Special--Generation-Radio---Englewood-Heights---Friday-9-12-2025'],['Heart of Country Music Fest: Jake Worthington, Ashland Craft, Derek Alan & John Morgen','Kenton County Fair','Independence, KY','Saturday','9/13/2025','TBD','7235072','Heart-of-Country-Music-Fest--Jake-Worthington--Ashland-Craft--Derek-Alan---John-Morgen-9-13-2025'],['K95 Country Jam II Music Festival: Dylan Scott, Parmalee, George Birge, Homegrown & DJ Chad Rock','Hanover Vegetable Farm','Ashland, VA','Saturday','9/13/2025','3:00 PM','6948686','K95-Country-Jam-II-Music-Festival--Dylan-Scott--Parmalee--George-Birge--Homegrown---DJ-Chad-Rock-9-13-2025'],['Hop Country Music Festival: Justin Moore, Ned Ledoux, Cody Beebe and The Crooks & Austin Miller - Saturday','Sozo Sports Complex','Yakima, WA','Saturday','9/13/2025','5:30 PM','7299258','Hop-Country-Music-Festival--Justin-Moore--Ned-Ledoux--Cody-Beebe-and-The-Crooks---Austin-Miller---Saturday-9-13-2025'],['Lee Brice','Meadow Brook Amphitheatre','Rochester Hills, MI','Friday','9/19/2025','7:00 PM','7151611','Lee-Brice-9-19-2025'],['Texas Sounds International Country Music Awards Festival','Memorial City Hall Performance Center','Marshall, TX','Thursday','10/2/2025','7:00 PM','7125860','Texas-Sounds-International-Country-Music-Awards-Festival-10-2-2025'],['Texas Sounds International Country Music Awards Festival','Memorial City Hall Performance Center','Marshall, TX','Friday','10/3/2025','7:00 PM','7125861','Texas-Sounds-International-Country-Music-Awards-Festival-10-3-2025'],['Texas Sounds International Country Music Awards Festival','Memorial City Hall Performance Center','Marshall, TX','Saturday','10/4/2025','7:00 PM','7125862','Texas-Sounds-International-Country-Music-Awards-Festival-10-4-2025'],['Fallfest Country Music Festival: Dylan Scott, LoCash, Cooper Alan & Drew Baldridge','Overlook Community Campus','Lancaster, PA','Sunday','10/5/2025','11:00 AM','7288209','Fallfest-Country-Music-Festival--Dylan-Scott--LoCash--Cooper-Alan---Drew-Baldridge-10-5-2025'],['Redwest Country Music Festival: Kacey Musgraves, Post Malone & Noah Kahan - 3 Day Pass','Utah State Fairpark','Salt Lake City, UT','Friday','10/10/2025','TBD','7214908','Redwest-Country-Music-Festival--Kacey-Musgraves--Post-Malone---Noah-Kahan---3-Day-Pass-10-10-2025']],'Country Music Festival','https://www.ticketnetwork.com');