//
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([['Anthem Radio - Tribute to Bon Jovi, Def Leppard and Queen','The Grand At Ritz Theater','Escondido, CA','Saturday','7/4/2026','6:00 PM','7980098','Anthem-Radio---Tribute-to-Bon-Jovi--Def-Leppard-and-Queen-7-4-2026'],['Bon Jovi','Madison Square Garden','New York, NY','Tuesday','7/7/2026','7:30 PM','7510001','Bon-Jovi-7-7-2026'],['Bon Jovi','Madison Square Garden','New York, NY','Thursday','7/9/2026','7:30 PM','7510020','Bon-Jovi-7-9-2026'],['Slippery When Wet - The Ultimate Bon Jovi Tribute','The Ville Amphitheater','Fayetteville, GA','Saturday','7/11/2026','7:00 PM','7860492','Slippery-When-Wet---The-Ultimate-Bon-Jovi-Tribute-7-11-2026'],['Bon Jovi','Madison Square Garden','New York, NY','Sunday','7/12/2026','7:30 PM','7510021','Bon-Jovi-7-12-2026'],['Bon Jovi','Madison Square Garden','New York, NY','Tuesday','7/14/2026','7:30 PM','7510022','Bon-Jovi-7-14-2026'],['Bon Jovi','Madison Square Garden','New York, NY','Thursday','7/16/2026','7:30 PM','7522222','Bon-Jovi-7-16-2026'],['Bon Journey: A Tribute to Bon Jovi and Journey','Vinoski Winery','Belle Vernon, PA','Saturday','7/18/2026','6:00 PM','7944843','Bon-Journey--A-Tribute-to-Bon-Jovi-and-Journey-7-18-2026'],['Bon Jovi','Madison Square Garden','New York, NY','Sunday','7/19/2026','7:30 PM','7525077','Bon-Jovi-7-19-2026'],['Bon Jovi','Madison Square Garden','New York, NY','Tuesday','7/21/2026','7:30 PM','7530413','Bon-Jovi-7-21-2026']],'Bon Jovi','https://www.ticketnetwork.com');