//
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([['Brad Paisley','Lexington Opera House','Lexington, KY','Wednesday','1/15/2025','7:30 PM','6852780','Brad-Paisley-1-15-2025'],['96.9 The Kat's Paul Shadt Icon Party & Brad Paisley','Coyote Joe's - NC','Charlotte, NC','Thursday','2/6/2025','7:30 PM','6916528','96-9-The-Kat-s-Paul-Shadt-Icon-Party---Brad-Paisley-2-6-2025'],['PARKING: Houston Livestock Show And Rodeo','NRG Stadium Parking Lots','Houston, TX','Monday','3/10/2025','TBD','6530925','PARKING--Houston-Livestock-Show-And-Rodeo-3-10-2025'],['Houston Livestock Show And Rodeo: Brad Paisley','NRG Stadium','Houston, TX','Monday','3/10/2025','6:45 PM','6359450','Houston-Livestock-Show-And-Rodeo--Brad-Paisley-3-10-2025'],['Country Concert At Hickory Hill Lakes: Brad Paisley, Parker McCollum & Blake Shelton - 3 Day Pass','Country Concert At Hickory Hill Lakes','Fort Loramie, OH','Thursday','7/10/2025','TBD','6755342','Country-Concert-At-Hickory-Hill-Lakes--Brad-Paisley--Parker-McCollum---Blake-Shelton---3-Day-Pass-7-10-2025'],['Country Concert At Hickory Hill Lakes: Brad Paisley, Brantley Gilbert & Scotty McCreery - Thursday (Time: TBD)','Country Concert At Hickory Hill Lakes','Fort Loramie, OH','Thursday','7/10/2025','12:00 PM','6755340','Country-Concert-At-Hickory-Hill-Lakes--Brad-Paisley--Brantley-Gilbert---Scotty-McCreery---Thursday--Time--TBD--7-10-2025']],'','https://www.ticketnetwork.com');