//
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-03A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Silversun Pickups','Charleston Music Hall','Charleston, SC','Thursday','4/30/2026','7:30 PM','7545658','Silversun-Pickups-4-30-2026'],['JJ Grey & Mofro','Peace Concert Hall At The Peace Center - SC','Greenville, SC','Thursday','4/30/2026','7:30 PM','7701285','JJ-Grey---Mofro-4-30-2026'],['Water for Elephants - The Musical','Procter & Gamble Hall at Aronoff Center','Cincinnati, OH','Thursday','4/30/2026','7:30 PM','6963392','Water-for-Elephants---The-Musical-4-30-2026'],['Pittsburgh Symphony Orchestra: Star Wars The Empire Strikes Back In Concert','Heinz Hall','Pittsburgh, PA','Friday','5/1/2026','7:00 PM','7627135','Pittsburgh-Symphony-Orchestra--Star-Wars-The-Empire-Strikes-Back-In-Concert-5-1-2026'],['Morgan Jay','Concert Hall at Singletary Center for the Arts','Lexington, KY','Friday','5/1/2026','7:00 PM','7411139','Morgan-Jay-5-1-2026'],['Jacksonville Symphony: Harry Potter and The Sorcerer's Stone In Concert','Jacoby Symphony Hall At Jacksonville Center for the Performing Arts','Jacksonville, FL','Friday','5/1/2026','7:00 PM','7265805','Jacksonville-Symphony--Harry-Potter-and-The-Sorcerer-s-Stone-In-Concert-5-1-2026'],['Witness For The Prosecution','London County Hall','London, United Kingdom','Friday','5/1/2026','7:30 PM','7388445','Witness-For-The-Prosecution-5-1-2026'],['Water for Elephants - The Musical','Procter & Gamble Hall at Aronoff Center','Cincinnati, OH','Friday','5/1/2026','7:30 PM','6963393','Water-for-Elephants---The-Musical-5-1-2026'],['Milwaukee Symphony Orchestra: John DeMain - Voices Eternal','Overture Hall At Overture Center for the Arts','Madison, WI','Friday','5/1/2026','7:30 PM','7589793','Milwaukee-Symphony-Orchestra--John-DeMain---Voices-Eternal-5-1-2026'],['Rhiannon Giddens','Jones Hall for the Performing Arts','Houston, TX','Friday','5/1/2026','7:30 PM','7559187','Rhiannon-Giddens-5-1-2026']],'"All For The Hall"','https://www.ticketnetwork.com');