//
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([['Priscilla Block','The Ranch Concert Hall & Saloon','Fort Myers, FL','Thursday','10/23/2025','7:00 PM','7224534','Priscilla-Block-10-23-2025'],['Cole Swindell & Priscilla Block','Hard Rock Live At The Seminole Hard Rock Hotel & Casino - Hollywood','Fort Lauderdale, FL','Friday','10/24/2025','7:00 PM','7080700','Cole-Swindell---Priscilla-Block-10-24-2025'],['Cole Swindell & Priscilla Block','The BayCare Sound','Clearwater, FL','Saturday','10/25/2025','7:00 PM','7082746','Cole-Swindell---Priscilla-Block-10-25-2025'],['Cole Swindell & Priscilla Block','St. Augustine Amphitheatre','St. Augustine, FL','Sunday','10/26/2025','6:30 PM','7081395','Cole-Swindell---Priscilla-Block-10-26-2025'],['Priscilla Block','Two Dimes','Tuscaloosa, AL','Wednesday','10/29/2025','8:00 PM','7361266','Priscilla-Block-10-29-2025'],['Priscilla Block','The Mill & Mine','Knoxville, TN','Thursday','10/30/2025','8:00 PM','7361241','Priscilla-Block-10-30-2025'],['Priscilla Block','The Signal - TN','Chattanooga, TN','Friday','10/31/2025','8:00 PM','7361242','Priscilla-Block-10-31-2025'],['Priscilla Block','The Rave - Milwaukee','Milwaukee, WI','Thursday','11/6/2025','8:00 PM','7363587','Priscilla-Block-11-6-2025'],['Priscilla Block','Island Resort & Casino','Harris, MI','Friday','11/7/2025','8:00 PM','7150232','Priscilla-Block-11-7-2025'],['Priscilla Block','Island Resort & Casino','Harris, MI','Saturday','11/8/2025','8:00 PM','7150233','Priscilla-Block-11-8-2025']],'Priscilla Block','https://www.ticketnetwork.com');