//
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([['Spencer Crandall','Eddie's Attic','Decatur, GA','Thursday','10/30/2025','7:00 PM','7100376','Spencer-Crandall-10-30-2025'],['Spencer Crandall','The Boathouse - Myrtle Beach','Myrtle Beach, SC','Friday','10/31/2025','7:00 PM','7100377','Spencer-Crandall-10-31-2025'],['Spencer Crandall','Union Stage - DC','Washington, DC','Saturday','11/1/2025','7:00 PM','7100378','Spencer-Crandall-11-1-2025'],['Spencer Crandall','The Crescent Ballroom - Phoenix','Phoenix, AZ','Thursday','11/13/2025','8:00 PM','7099733','Spencer-Crandall-11-13-2025'],['Spencer Crandall','Stoney's Rockin Country','Las Vegas, NV','Friday','11/14/2025','10:00 PM','7100379','Spencer-Crandall-11-14-2025'],['Spencer Crandall','Moonshine Flats','San Diego, CA','Saturday','11/15/2025','7:00 PM','7100380','Spencer-Crandall-11-15-2025'],['Spencer Crandall','The Domino Room','Bend, OR','Thursday','11/20/2025','8:00 PM','7100381','Spencer-Crandall-11-20-2025'],['Spencer Crandall','Heritage Social Club - Bar & Grill','Garden City, ID','Friday','11/21/2025','7:00 PM','7100382','Spencer-Crandall-11-21-2025'],['Spencer Crandall','The State Room','Salt Lake City, UT','Saturday','11/22/2025','7:00 PM','7100383','Spencer-Crandall-11-22-2025']],'Spencer Crandall','https://www.ticketnetwork.com');