//
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-02A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Outlaw Nation: NuBreed & Jesse Howard','The Venue Event Center','Cadillac, MI','Friday','8/14/2026','6:00 PM','7957915','Outlaw-Nation--NuBreed---Jesse-Howard-8-14-2026'],['Zac Brown Band','Nationwide Arena','Columbus, OH','Friday','8/14/2026','7:00 PM','7703250','Zac-Brown-Band-8-14-2026'],['Ella Mai','Synovus Bank Amphitheater at Chastain Park','Atlanta, GA','Friday','8/14/2026','8:00 PM','7791782','Ella-Mai-8-14-2026'],['Kipawa CountryFest: Dean Brody - Saturday (Time: TBD)','Kebaowek First Nation','Kebaowek, Canada','Saturday','8/15/2026','4:00 PM','8022602','Kipawa-CountryFest--Dean-Brody---Saturday--Time--TBD--8-15-2026'],['Motley Crue & Tesla','MidFlorida Credit Union Amphitheatre At The Florida State Fairgrounds','Tampa, FL','Saturday','8/15/2026','6:30 PM','7569831','Motley-Crue---Tesla-8-15-2026'],['Racing Louisville FC vs. Boston Legacy FC','Lynn Family Stadium','Louisville, KY','Saturday','8/15/2026','6:30 PM','7681865','Racing-Louisville-FC-vs--Boston-Legacy-FC-8-15-2026'],['Motown Nation','Le Balcon','Montreal, Canada','Saturday','8/15/2026','8:30 PM','7892156','Motown-Nation-8-15-2026'],['America's Soundtrack - The Pulse of a Nation','Oconomowoc Arts Center','Oconomowoc, WI','Sunday','8/16/2026','2:00 PM','7938523','America-s-Soundtrack---The-Pulse-of-a-Nation-8-16-2026'],['Swift Nation - Tribute to Taylor Swift','The Hangar at Orange County Fair & Exposition Center','Costa Mesa, CA','Sunday','8/16/2026','8:15 PM','7945652','Swift-Nation---Tribute-to-Taylor-Swift-8-16-2026'],['Avenged Sevenfold & Good Charlotte','MidFlorida Credit Union Amphitheatre At The Florida State Fairgrounds','Tampa, FL','Tuesday','8/18/2026','6:00 PM','7613002','Avenged-Sevenfold---Good-Charlotte-8-18-2026']],'Live Nation','https://www.ticketnetwork.com');