//
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-04A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Joseph - The Band','Pappy & Harriet's Pioneertown Palace - Indoor Stage','Pioneertown, CA','Tuesday','2/24/2026','8:00 PM','7543868','Joseph---The-Band-2-24-2026'],['Noeline Hofmann','The Casbah - CA','San Diego, CA','Tuesday','2/24/2026','8:30 PM','7660541','Noeline-Hofmann-2-24-2026'],['Easton Corbin','Stage One at Harris Center for the Arts','Folsom, CA','Wednesday','2/25/2026','7:30 PM','7316146','Easton-Corbin-2-25-2026'],['John Reischman And The Jaybirds','Freight & Salvage','Berkeley, CA','Wednesday','2/25/2026','8:00 PM','7648694','John-Reischman-And-The-Jaybirds-2-25-2026'],['Joseph - The Band','Music Box - San Diego','San Diego, CA','Wednesday','2/25/2026','8:00 PM','7543852','Joseph---The-Band-2-25-2026'],['James Garner - Tribute To Johnny Cash','The Center For The Arts - Grass Valley','Grass Valley, CA','Thursday','2/26/2026','7:00 PM','7651192','James-Garner---Tribute-To-Johnny-Cash-2-26-2026'],['The Imaginaries','Cerritos Center','Cerritos, CA','Thursday','2/26/2026','7:30 PM','7164038','The-Imaginaries-2-26-2026'],['Easton Corbin','Heritage Theatre - CA','Campbell, CA','Thursday','2/26/2026','8:00 PM','7278536','Easton-Corbin-2-26-2026'],['Lera Lynn & Peter Bradley Adams','HopMonk Tavern - Novato','Novato, CA','Thursday','2/26/2026','8:00 PM','7381382','Lera-Lynn---Peter-Bradley-Adams-2-26-2026'],['Noeline Hofmann','Pappy & Harriet's Pioneertown Palace - Indoor Stage','Pioneertown, CA','Thursday','2/26/2026','9:00 PM','7682405','Noeline-Hofmann-2-26-2026']],'California Country Show','https://www.ticketnetwork.com');