//
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-01A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Rebelution','Santa Barbara Bowl','Santa Barbara, CA','Thursday','10/16/2025','5:00 PM','7206644','Rebelution-10-16-2025'],['Pecos and the Rooftops','BarrelHouse Brewing Co','Paso Robles, CA','Thursday','10/16/2025','6:00 PM','7137839','Pecos-and-the-Rooftops-10-16-2025'],['Country Line Dance','HopMonk Tavern - Novato','Novato, CA','Thursday','10/16/2025','6:00 PM','7413116','Country-Line-Dance-10-16-2025'],['Bayker Blankenship','House Of Blues - San Diego','San Diego, CA','Thursday','10/16/2025','7:00 PM','7209975','Bayker-Blankenship-10-16-2025'],['Adam Calhoun','Fulton 55','Fresno, CA','Thursday','10/16/2025','8:00 PM','7389632','Adam-Calhoun-10-16-2025'],['Justin Moore','Hard Rock Live - Sacramento','Wheatland, CA','Thursday','10/16/2025','8:00 PM','7364718','Justin-Moore-10-16-2025'],['Jeffrey Martin','Zebulon','Los Angeles, CA','Thursday','10/16/2025','8:00 PM','7286771','Jeffrey-Martin-10-16-2025'],['AJ Lee and Blue Summit & East Nash Grass','The Casbah - CA','San Diego, CA','Thursday','10/16/2025','8:30 PM','7273016','AJ-Lee-and-Blue-Summit---East-Nash-Grass-10-16-2025'],['Rosy Nolan & The Farmer and Adele','Pappy & Harriet's Pioneertown Palace - Indoor Stage','Pioneertown, CA','Thursday','10/16/2025','9:00 PM','7339364','Rosy-Nolan---The-Farmer-and-Adele-10-16-2025'],['Jeffrey Martin & Anna Tivel','The Wayfarer','Costa Mesa, CA','Friday','10/17/2025','7:00 PM','7286772','Jeffrey-Martin---Anna-Tivel-10-17-2025']],'California Country Show','https://www.ticketnetwork.com');