//
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([['Grand Ole Echo','The Echo','Los Angeles, CA','Sunday','7/12/2026','5:30 PM','7784571','Grand-Ole-Echo-7-12-2026'],['Wynonna Judd & Melissa Etheridge','Great Park Live','Irvine, CA','Sunday','7/12/2026','7:00 PM','7794238','Wynonna-Judd---Melissa-Etheridge-7-12-2026'],['Diamond Rio','Uptown Theatre Napa','Napa, CA','Sunday','7/12/2026','7:00 PM','7987808','Diamond-Rio-7-12-2026'],['Maren Morris','Mountain Winery','Saratoga, CA','Sunday','7/12/2026','7:30 PM','7851534','Maren-Morris-7-12-2026'],['Dylan LeBlanc','The Casbah - CA','San Diego, CA','Sunday','7/12/2026','8:00 PM','7996711','Dylan-LeBlanc-7-12-2026'],['Willie Nelson and Family','Pacific Amphitheatre','Costa Mesa, CA','Sunday','7/12/2026','8:00 PM','7980785','Willie-Nelson-and-Family-7-12-2026'],['Chris Stapleton's All-American Road Show: Chris Stapleton & Molly Tuttle','California Mid-state Fair Grounds','Paso Robles, CA','Tuesday','7/14/2026','7:30 PM','7668717','Chris-Stapleton-s-All-American-Road-Show--Chris-Stapleton---Molly-Tuttle-7-14-2026'],['Willie Nelson & Family','Mountain Winery','Saratoga, CA','Tuesday','7/14/2026','7:30 PM','7977042','Willie-Nelson---Family-7-14-2026'],['Maren Morris','Yaamava Theater at Yaamava Resort & Casino','Highland, CA','Tuesday','7/14/2026','8:00 PM','7811108','Maren-Morris-7-14-2026'],['Old Dominion','California Mid-state Fair Grounds','Paso Robles, CA','Wednesday','7/15/2026','7:00 PM','7794215','Old-Dominion-7-15-2026']],'California Country Show','https://www.ticketnetwork.com');