//
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([['The Phantom of the Opera','Hollywood Pantages Theatre - CA','Los Angeles, CA','Sunday','7/26/2026','1:00 PM','7016887','The-Phantom-of-the-Opera-7-26-2026'],['San Francisco Giants vs. Los Angeles Angels','Oracle Park','San Francisco, CA','Sunday','7/26/2026','1:05 PM','7368867','San-Francisco-Giants-vs--Los-Angeles-Angels-7-26-2026'],['Grand Ole Echo','The Echo','Los Angeles, CA','Sunday','7/26/2026','5:30 PM','7784594','Grand-Ole-Echo-7-26-2026'],['Angel City FC vs. Racing Louisville FC','BMO Stadium','Los Angeles, CA','Sunday','7/26/2026','6:00 PM','7681326','Angel-City-FC-vs--Racing-Louisville-FC-7-26-2026'],['The Phantom of the Opera','Hollywood Pantages Theatre - CA','Los Angeles, CA','Sunday','7/26/2026','6:30 PM','7012674','The-Phantom-of-the-Opera-7-26-2026'],['Boris Brejcha & Hollywood Bowl Orchestra','Hollywood Bowl','Los Angeles, CA','Sunday','7/26/2026','7:00 PM','7745768','Boris-Brejcha---Hollywood-Bowl-Orchestra-7-26-2026'],['Wu Lyf','The Echo','Los Angeles, CA','Sunday','7/26/2026','8:00 PM','8027887','Wu-Lyf-7-26-2026'],['Los Angeles Angels vs. Houston Astros','Angel Stadium','Anaheim, CA','Monday','7/27/2026','6:38 PM','7368153','Los-Angeles-Angels-vs--Houston-Astros-7-27-2026'],['Chance Pena','The Fonda Theatre','Los Angeles, CA','Monday','7/27/2026','8:00 PM','7600285','Chance-Pena-7-27-2026'],['Los Angeles Angels vs. Houston Astros','Angel Stadium','Anaheim, CA','Tuesday','7/28/2026','6:38 PM','7368155','Los-Angeles-Angels-vs--Houston-Astros-7-28-2026']],'Los Angeles Ca','https://www.ticketnetwork.com');