//
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([['The Dead South','Vibrant Music Hall','Waukee, IA','Saturday','6/27/2026','7:30 PM','7600042','The-Dead-South-6-27-2026'],['The Dead South','Everwise Amphitheater at White River State Park','Indianapolis, IN','Sunday','6/28/2026','7:30 PM','7599878','The-Dead-South-6-28-2026'],['Country Thunder Saskatchewan: Riley Green, Creed & Lainey Wilson - 4 Day Pass','Craven Country Jamboree Festival Site','Craven, Canada','Thursday','7/9/2026','TBD','7629580','Country-Thunder-Saskatchewan--Riley-Green--Creed---Lainey-Wilson---4-Day-Pass-7-9-2026'],['The Dead South','Wildhorse Saloon - Calgary','Calgary, Canada','Thursday','7/9/2026','6:00 PM','7964624','The-Dead-South-7-9-2026'],['Country Thunder Saskatchewan: Riley Green, Gavin Adcock & The Dead South - Friday','Craven Country Jamboree Festival Site','Craven, Canada','Friday','7/10/2026','12:00 PM','7653559','Country-Thunder-Saskatchewan--Riley-Green--Gavin-Adcock---The-Dead-South---Friday-7-10-2026'],['Area 506 Festival: The Dead South & Kathleen Edwards - Thursday (Time: TBD)','Area 506 Waterfront Container Village','Saint John, Canada','Thursday','7/30/2026','12:00 PM','7840774','Area-506-Festival--The-Dead-South---Kathleen-Edwards---Thursday--Time--TBD--7-30-2026'],['Theory Of A Deadman & Sevendust','Brown County Fairgrounds - SD','Aberdeen, SD','Friday','8/14/2026','8:00 PM','7799678','Theory-Of-A-Deadman---Sevendust-8-14-2026'],['Theory Of A Deadman & Sevendust','Wendell's Outdoors','Anderson, SC','Friday','9/4/2026','7:00 PM','7938714','Theory-Of-A-Deadman---Sevendust-9-4-2026'],['The Dead South','Le Club Square Dix30','Brossard, Canada','Thursday','10/29/2026','8:00 PM','7933950','The-Dead-South-10-29-2026']],'"The Dead South"','https://www.ticketnetwork.com');