//
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([['Glenn Rosenblum','Coachella Valley Repertory','Cathedral City, CA','Tuesday','7/14/2026','7:00 PM','8048118','Glenn-Rosenblum-7-14-2026'],['Sarah Uriarte Berry','Coachella Valley Repertory','Cathedral City, CA','Thursday','7/16/2026','7:00 PM','8088942','Sarah-Uriarte-Berry-7-16-2026'],['Ezequiel Pena','Spotlight Showroom at Spotlight 29 Casino','Coachella, CA','Saturday','7/18/2026','8:00 PM','7843975','Ezequiel-Pena-7-18-2026'],['Happy Together Tour','Spotlight Showroom at Spotlight 29 Casino','Coachella, CA','Sunday','7/19/2026','6:00 PM','7754676','Happy-Together-Tour-7-19-2026'],['Nic and Desi','Coachella Valley Repertory','Cathedral City, CA','Tuesday','7/21/2026','7:00 PM','8048120','Nic-and-Desi-7-21-2026'],['Mary VanArsdel','Coachella Valley Repertory','Cathedral City, CA','Thursday','7/23/2026','7:00 PM','8048121','Mary-VanArsdel-7-23-2026'],['Carlos Daniels - Tribute To Juan Gabriel','Spotlight Showroom at Spotlight 29 Casino','Coachella, CA','Saturday','7/25/2026','8:00 PM','7913817','Carlos-Daniels---Tribute-To-Juan-Gabriel-7-25-2026'],['Glenn Rosenblum','Coachella Valley Repertory','Cathedral City, CA','Tuesday','7/28/2026','7:00 PM','8048119','Glenn-Rosenblum-7-28-2026'],['Davis Gaines','Coachella Valley Repertory','Cathedral City, CA','Thursday','7/30/2026','7:00 PM','8048122','Davis-Gaines-7-30-2026'],['Aaron Lewis and The Stateliners','Spotlight Showroom at Spotlight 29 Casino','Coachella, CA','Sunday','8/9/2026','8:00 PM','7832496','Aaron-Lewis-and-The-Stateliners-8-9-2026']],'"Coachella"','https://www.ticketnetwork.com');