//
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([['Priscilla Block','Eight Seconds Saloon','Indianapolis, IN','Saturday','12/6/2025','8:45 PM','7361231','Priscilla-Block-12-6-2025'],['Priscilla Block','Fremont Theater - CA','San Luis Obispo, CA','Thursday','1/22/2026','8:00 PM','7488498','Priscilla-Block-1-22-2026'],['Priscilla Block','Uptown Theatre Napa','Napa, CA','Friday','1/23/2026','8:00 PM','7488500','Priscilla-Block-1-23-2026'],['Priscilla Block','Ace of Spades','Sacramento, CA','Saturday','1/24/2026','8:00 PM','7488375','Priscilla-Block-1-24-2026'],['Priscilla Block','House Of Blues - Anaheim','Anaheim, CA','Thursday','1/29/2026','7:00 PM','7488371','Priscilla-Block-1-29-2026'],['Priscilla Block','House Of Blues - San Diego','San Diego, CA','Friday','1/30/2026','8:00 PM','7488379','Priscilla-Block-1-30-2026'],['Priscilla Block','Marquee Theatre - AZ','Tempe, AZ','Saturday','1/31/2026','8:00 PM','7488417','Priscilla-Block-1-31-2026'],['Priscilla Block','The Depot - Salt Lake City','Salt Lake City, UT','Thursday','2/5/2026','7:00 PM','7488373','Priscilla-Block-2-5-2026'],['Priscilla Block','Grizzly Rose','Denver, CO','Friday','2/6/2026','8:00 PM','7488380','Priscilla-Block-2-6-2026'],['Priscilla Block','Warehouse 25 Sixty-Five','Grand Junction, CO','Saturday','2/7/2026','7:00 PM','7488501','Priscilla-Block-2-7-2026']],'Priscilla Block','https://www.ticketnetwork.com');