//
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([['Warren Zeiders','Del Mar Fairgrounds','Del Mar, CA','Friday','7/3/2026','7:30 PM','7942491','Warren-Zeiders-7-3-2026'],['Grand Ole Echo','The Echo','Los Angeles, CA','Sunday','7/5/2026','5:30 PM','7784593','Grand-Ole-Echo-7-5-2026'],['Chris Stapleton's All-American Road Show: Chris Stapleton & Molly Tuttle','Shoreline Amphitheatre - CA','Mountain View, CA','Wednesday','7/8/2026','7:30 PM','7668714','Chris-Stapleton-s-All-American-Road-Show--Chris-Stapleton---Molly-Tuttle-7-8-2026'],['Jesse Ray Smith','Sweetwater Music Hall','Mill Valley, CA','Wednesday','7/8/2026','8:00 PM','7995450','Jesse-Ray-Smith-7-8-2026'],['Lucero - Band','Castro Theatre','San Francisco, CA','Wednesday','7/8/2026','8:00 PM','7879037','Lucero---Band-7-8-2026'],['Lucero - Band','Delfino Farms','Camino, CA','Thursday','7/9/2026','6:00 PM','7879041','Lucero---Band-7-9-2026'],['Royel Otis','Santa Barbara Bowl','Santa Barbara, CA','Thursday','7/9/2026','7:00 PM','7962564','Royel-Otis-7-9-2026'],['SunHunter','Sweetwater Music Hall','Mill Valley, CA','Thursday','7/9/2026','8:00 PM','7969251','SunHunter-7-9-2026'],['Stella Prince','Cornerstone - CA','Berkeley, CA','Thursday','7/9/2026','8:00 PM','7831680','Stella-Prince-7-9-2026'],['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']],'California Country Show','https://www.ticketnetwork.com');