//
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 dateArray = row[4].split('/');
var date = months[dateArray[0]] + " " + dateArray[1];
var parking = row[0].split(':')[0]
if (parking !== "PARKING") {
return "
";
}
},
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 newResults = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newResults.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newResults.join('') + '
';
} else
document.write('' + newResults.join('') + '
');
if(eventData.length >= 101 && kwds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
}
};
}();
//BPW-TNSERV-01A
TN_Widget.AddCss('//tn-widget.seatics.com/widget2Css/results-style-1.css');
TN_Widget.AddCss('//s3.amazonaws.com/ticketnetwork/fonts/TTNorms/TTNorms.css');
TN_Widget.CreateTable([['John Legend','Yaamava Theater at Yaamava Resort & Casino','Highland, CA','Monday','12/2/2024','8:00 PM','6748056','John-Legend-12-2-2024'],['John Legend','YouTube Theater at Hollywood Park','Inglewood, CA','Tuesday','12/3/2024','8:00 PM','6747001','John-Legend-12-3-2024'],['John Legend','Fox Theater - Oakland','Oakland, CA','Thursday','12/5/2024','8:00 PM','6747002','John-Legend-12-5-2024'],['John Legend','Tahoe Blue Event Center','Stateline, NV','Friday','12/6/2024','8:00 PM','6747003','John-Legend-12-6-2024'],['John Legend','Climate Pledge Arena','Seattle, WA','Sunday','12/8/2024','8:00 PM','6747004','John-Legend-12-8-2024'],['John Legend','Moda Center at the Rose Quarter','Portland, OR','Monday','12/9/2024','8:00 PM','6747005','John-Legend-12-9-2024'],['John Legend','Lucas Oil Live At WinStar Casino','Thackerville, OK','Friday','12/13/2024','8:00 PM','6746648','John-Legend-12-13-2024'],['John Legend','Peace Concert Hall At The Peace Center - SC','Greenville, SC','Monday','12/16/2024','7:30 PM','6784109','John-Legend-12-16-2024'],['John Legend','Fabulous Fox Theatre - Atlanta','Atlanta, GA','Tuesday','12/17/2024','8:00 PM','6748057','John-Legend-12-17-2024'],['John Legend','PPL Center','Allentown, PA','Thursday','12/19/2024','8:00 PM','6747006','John-Legend-12-19-2024'],['John Legend','Borgata Event Center','Atlantic City, NJ','Friday','12/20/2024','8:00 PM','6747007','John-Legend-12-20-2024'],['John Legend','The Hall at Maryland Live','Hanover, MD','Saturday','12/21/2024','8:00 PM','6749408','John-Legend-12-21-2024']],'John Legend','http://www.ticketnetwork.com/en/search/?text=John%20Legend');