//
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-01A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['M&M Dance Academy: We're All In This Together','Palace Theatre - PA','Greensburg, PA','Sunday','5/17/2026','9:30 AM','7916573','M-M-Dance-Academy--We-re-All-In-This-Together-5-17-2026'],['Now That's What We Call Drag','Louisville Comedy Club','Louisville, KY','Sunday','5/17/2026','3:00 PM','7732113','Now-That-s-What-We-Call-Drag-5-17-2026'],['Spokane Youth Symphony: Together We Reach for the Stars','Martin Woldson Theatre At The Fox','Spokane, WA','Sunday','5/17/2026','4:00 PM','7565196','Spokane-Youth-Symphony--Together-We-Reach-for-the-Stars-5-17-2026'],['We Them Ones Comedy Tour: Mike Epps, Karlous Miller, DC Young Fly & Chico Bean','Hard Rock Live At The Seminole Hard Rock Hotel & Casino - Hollywood','Hollywood, FL','Sunday','5/17/2026','7:00 PM','7542601','We-Them-Ones-Comedy-Tour--Mike-Epps--Karlous-Miller--DC-Young-Fly---Chico-Bean-5-17-2026'],['We Them Ones Comedy Tour: Mike Epps, Karlous Miller, DC Young Fly & Chico Bean','Desert Diamond Arena','Glendale, AZ','Friday','5/22/2026','8:00 PM','7544029','We-Them-Ones-Comedy-Tour--Mike-Epps--Karlous-Miller--DC-Young-Fly---Chico-Bean-5-22-2026'],['We Them Ones Comedy Tour: Mike Epps, Karlous Miller, DC Young Fly & Chico Bean','The Theatre at Resorts World Las Vegas','Las Vegas, NV','Saturday','5/23/2026','8:00 PM','7544030','We-Them-Ones-Comedy-Tour--Mike-Epps--Karlous-Miller--DC-Young-Fly---Chico-Bean-5-23-2026'],['The Qalanjo Project: What We Pass Between Us - On Mothers, Daughters and Becoming','The Cedar Cultural Center','Minneapolis, MN','Friday','5/29/2026','7:00 PM','7927022','The-Qalanjo-Project--What-We-Pass-Between-Us---On-Mothers--Daughters-and-Becoming-5-29-2026'],['While We're Young - One Direction Dance Night','The Starlet Room','Sacramento, CA','Friday','5/29/2026','8:00 PM','7917285','While-We-re-Young---One-Direction-Dance-Night-5-29-2026'],['We Them Ones Comedy Tour: Mike Epps, Navv Greene, Karlous Miller & Chico Bean','Wintrust Arena','Chicago, IL','Saturday','5/30/2026','8:00 PM','7877807','We-Them-Ones-Comedy-Tour--Mike-Epps--Navv-Greene--Karlous-Miller---Chico-Bean-5-30-2026'],['What We Said','Janet Quinney Lawson Capitol Theatre','Salt Lake City, UT','Saturday','5/30/2026','8:00 PM','7833867','What-We-Said-5-30-2026']],'"May We All"','https://www.ticketnetwork.com');