//
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-04A
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/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 Valley Classical Voices','Historic Plaza Theatre','Palm Springs, CA','Sunday','8/23/2026','3:00 PM','7995907','Coachella-Valley-Classical-Voices-8-23-2026'],['Amanda Miguel','Spotlight Showroom at Spotlight 29 Casino','Coachella, CA','Saturday','8/29/2026','8:00 PM','7843974','Amanda-Miguel-8-29-2026'],['Banda Machos','Spotlight Showroom at Spotlight 29 Casino','Coachella, CA','Friday','9/11/2026','8:00 PM','8013709','Banda-Machos-9-11-2026'],['Banda Los Recoditos','Spotlight Showroom at Spotlight 29 Casino','Coachella, CA','Sunday','9/20/2026','7:00 PM','8035196','Banda-Los-Recoditos-9-20-2026'],['Little River Band','Spotlight Showroom at Spotlight 29 Casino','Coachella, CA','Saturday','9/26/2026','8:00 PM','8035340','Little-River-Band-9-26-2026'],['Coachella Valley Firebirds vs. Ontario Reign','Acrisure Arena','Palm Desert, CA','Friday','10/2/2026','7:00 PM','8119034','Coachella-Valley-Firebirds-vs--Ontario-Reign-10-2-2026'],['Ontario Reign vs. Coachella Valley Firebirds','Toyota Arena - Ontario','Ontario, CA','Saturday','10/3/2026','6:00 PM','8119054','Ontario-Reign-vs--Coachella-Valley-Firebirds-10-3-2026']],'Coachella','https://www.ticketnetwork.com');