//
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-02A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Cody Johnson','Globe Life Field','Arlington, TX','Saturday','11/9/2024','6:00 PM','6395643','Cody-Johnson-11-9-2024'],['Cody Johnson','Wells Fargo Center - PA','Philadelphia, PA','Friday','11/15/2024','7:30 PM','6395667','Cody-Johnson-11-15-2024'],['Cody Johnson','Bryce Jordan Center','University Park, PA','Saturday','11/16/2024','7:30 PM','6395668','Cody-Johnson-11-16-2024'],['Cody Johnson','MGM Grand Garden Arena','Las Vegas, NV','Thursday','12/12/2024','7:30 PM','6451571','Cody-Johnson-12-12-2024'],['Cody Johnson','MGM Grand Garden Arena','Las Vegas, NV','Friday','12/13/2024','7:30 PM','6441651','Cody-Johnson-12-13-2024'],['Cody Johnson','Prudential Center','Newark, NJ','Friday','1/17/2025','7:30 PM','6736332','Cody-Johnson-1-17-2025'],['Cody Johnson','John Paul Jones Arena','Charlottesville, VA','Saturday','1/18/2025','7:30 PM','6736333','Cody-Johnson-1-18-2025'],['Cody Johnson','Enterprise Center','St. Louis, MO','Friday','1/24/2025','7:30 PM','6736667','Cody-Johnson-1-24-2025'],['Cody Johnson','Vibrant Arena at The MARK','Moline, IL','Saturday','1/25/2025','7:30 PM','6736334','Cody-Johnson-1-25-2025'],['Cody Johnson','Fiserv Forum','Milwaukee, WI','Friday','1/31/2025','7:30 PM','6736668','Cody-Johnson-1-31-2025']],'"Cody Johnson"','https://www.ticketnetwork.com');