//
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([['Chris Stapleton's All-American Road Show: Chris Stapleton & Molly Tuttle','North Island Credit Union Amphitheatre','Chula Vista, CA','Friday','7/10/2026','7:30 PM','7668716','Chris-Stapleton-s-All-American-Road-Show--Chris-Stapleton---Molly-Tuttle-7-10-2026'],['Ashley Cooke','Beats at Yaamava Resort & Casino','Highland, CA','Friday','7/10/2026','8:00 PM','7926353','Ashley-Cooke-7-10-2026'],['Country On The Coast: Shenandoah, Chad Bushnell & Luke Powell','Fortuna Rodeo Grounds','Fortuna, CA','Saturday','7/11/2026','5:30 PM','7916836','Country-On-The-Coast--Shenandoah--Chad-Bushnell---Luke-Powell-7-11-2026'],['Wynonna Judd & Melissa Etheridge','The Rady Shell at Jacobs Park','San Diego, CA','Saturday','7/11/2026','7:00 PM','7772915','Wynonna-Judd---Melissa-Etheridge-7-11-2026'],['Miranda Lambert','Salinas Sports Complex','Salinas, CA','Saturday','7/11/2026','7:00 PM','7729171','Miranda-Lambert-7-11-2026'],['Chris Stapleton's All-American Road Show: Chris Stapleton & Molly Tuttle','North Island Credit Union Amphitheatre','Chula Vista, CA','Saturday','7/11/2026','7:30 PM','7679825','Chris-Stapleton-s-All-American-Road-Show--Chris-Stapleton---Molly-Tuttle-7-11-2026'],['Maren Morris','Uptown Theatre Napa','Napa, CA','Saturday','7/11/2026','7:30 PM','7810742','Maren-Morris-7-11-2026'],['Neon Moon Country Party','Ventura Music Hall','Ventura, CA','Saturday','7/11/2026','8:00 PM','7990260','Neon-Moon-Country-Party-7-11-2026'],['Dylan LeBlanc','Ojai Deer Lodge','Ojai, CA','Saturday','7/11/2026','8:00 PM','7995168','Dylan-LeBlanc-7-11-2026'],['Clint Black','The Event At Graton Resort & Casino','Rohnert Park, CA','Saturday','7/11/2026','8:00 PM','7843893','Clint-Black-7-11-2026']],'"California Country Show"','https://www.ticketnetwork.com');