//
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-03A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Country In The Park: Miranda Lambert, Chris Young, Kameron Marlowe & Meghan Patrick - Saturday','The Cove At Cal Expo','Sacramento, CA','Saturday','5/9/2026','1:00 PM','7579321','Country-In-The-Park--Miranda-Lambert--Chris-Young--Kameron-Marlowe---Meghan-Patrick---Saturday-5-9-2026'],['Ranch Rodeo & Afterparty: Casey Donahew & Diamond Dixie','Siskiyou Golden Fairgrounds','Yreka, CA','Saturday','5/9/2026','6:00 PM','7768689','Ranch-Rodeo---Afterparty--Casey-Donahew---Diamond-Dixie-5-9-2026'],['49 Winchester','Pappy & Harriet's Pioneertown Palace - Outdoor Stage','Pioneertown, CA','Saturday','5/9/2026','7:00 PM','7734089','49-Winchester-5-9-2026'],['Turnpike Troubadours','Save Mart Center','Fresno, CA','Saturday','5/9/2026','7:00 PM','7704201','Turnpike-Troubadours-5-9-2026'],['James Garner - Tribute To Johnny Cash','Turlock Community Theatre','Turlock, CA','Saturday','5/9/2026','7:30 PM','7741645','James-Garner---Tribute-To-Johnny-Cash-5-9-2026'],['AVTT/PTTN: The Avett Brothers & Mike Patton','Vina Robles Amphitheater','Paso Robles, CA','Saturday','5/9/2026','7:30 PM','7562518','AVTT-PTTN--The-Avett-Brothers---Mike-Patton-5-9-2026'],['Jim Messina','The Guild Theatre - Menlo Park','Menlo Park, CA','Saturday','5/9/2026','8:00 PM','7706900','Jim-Messina-5-9-2026'],['Grand Ole Echo','The Echo','Los Angeles, CA','Sunday','5/10/2026','5:30 PM','7784545','Grand-Ole-Echo-5-10-2026'],['Brandy Clark','Coach House - Capistrano','San Juan Capistrano, CA','Sunday','5/10/2026','8:00 PM','7759979','Brandy-Clark-5-10-2026'],['AVTT/PTTN: The Avett Brothers & Mike Patton','The Rady Shell at Jacobs Park','San Diego, CA','Sunday','5/10/2026','8:07 PM','7561760','AVTT-PTTN--The-Avett-Brothers---Mike-Patton-5-10-2026']],'California Country Show','https://www.ticketnetwork.com');