//
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([['Trace Adkins','Dos Lagos Lakeside Amphitheater','Corona, CA','Friday','8/7/2026','6:00 PM','7940750','Trace-Adkins-8-7-2026'],['Charles Wesley Godwin','The Wiltern','Los Angeles, CA','Friday','8/7/2026','7:00 PM','7980316','Charles-Wesley-Godwin-8-7-2026'],['Ole 60','The Novo','Los Angeles, CA','Friday','8/7/2026','7:00 PM','7978333','Ole-60-8-7-2026'],['Megan Moroney','Crypto.com Arena','Los Angeles, CA','Friday','8/7/2026','7:00 PM','7606121','Megan-Moroney-8-7-2026'],['Hunter Hayes','Yolo County Fairgrounds','Woodland, CA','Friday','8/7/2026','8:00 PM','7946022','Hunter-Hayes-8-7-2026'],['Briscoe','Pappy & Harriet's Pioneertown Palace - Indoor Stage','Pioneertown, CA','Friday','8/7/2026','9:00 PM','7903061','Briscoe-8-7-2026'],['Santa Barbara Mariachi Festival','Santa Barbara Bowl','Santa Barbara, CA','Saturday','8/8/2026','5:00 PM','7930311','Santa-Barbara-Mariachi-Festival-8-8-2026'],['Chris Lane','Yolo County Fairgrounds','Woodland, CA','Saturday','8/8/2026','6:45 PM','7958493','Chris-Lane-8-8-2026'],['Megan Moroney','Crypto.com Arena','Los Angeles, CA','Saturday','8/8/2026','7:00 PM','7622217','Megan-Moroney-8-8-2026'],['Ole 60','Vina Robles Amphitheater','Paso Robles, CA','Saturday','8/8/2026','7:00 PM','7976836','Ole-60-8-8-2026']],'"California Country Show"','https://www.ticketnetwork.com');