//
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([['Lizzo','Blue Note Los Angeles','Los Angeles, CA','Sunday','2/22/2026','7:00 PM','7707643','Lizzo-2-22-2026'],['Lizzo','Blue Note Los Angeles','Los Angeles, CA','Sunday','2/22/2026','9:30 PM','7707644','Lizzo-2-22-2026'],['Lizzo','Blue Note Jazz Club - New York','New York, NY','Friday','2/27/2026','8:00 PM','7707633','Lizzo-2-27-2026'],['Lizzo','Blue Note Jazz Club - New York','New York, NY','Friday','2/27/2026','10:30 PM','7707634','Lizzo-2-27-2026'],['Lizzo','Blue Note Jazz Club - New York','New York, NY','Saturday','2/28/2026','8:00 PM','7707635','Lizzo-2-28-2026'],['Lizzo','Blue Note Jazz Club - New York','New York, NY','Saturday','2/28/2026','10:30 PM','7707636','Lizzo-2-28-2026'],['Lizzo','Blue Note Jazz Club - New York','New York, NY','Sunday','3/1/2026','8:00 PM','7707637','Lizzo-3-1-2026'],['Lizzo','Blue Note Jazz Club - New York','New York, NY','Sunday','3/1/2026','10:30 PM','7707638','Lizzo-3-1-2026'],['Houston Livestock Show And Rodeo: Lizzo','NRG Stadium','Houston, TX','Friday','3/6/2026','6:45 PM','7089317','Houston-Livestock-Show-And-Rodeo--Lizzo-3-6-2026'],['Netflix Is A Joke Festival: Lizzo & Friends','Greek Theatre - Los Angeles CA','Los Angeles, CA','Thursday','5/7/2026','8:00 PM','7690486','Netflix-Is-A-Joke-Festival--Lizzo---Friends-5-7-2026']],'Lizzo','http://www.ticketnetwork.com/en/search/?text=Lizzo');