//
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([['The Marcus King Band','Horseshoe Casino's Bluesville','Robinsonville, MS','Friday','5/1/2026','8:00 PM','7721407','The-Marcus-King-Band-5-1-2026'],['The Marcus King Band','Orpheum Theater - New Orleans','New Orleans, LA','Saturday','5/2/2026','9:00 PM','7716055','The-Marcus-King-Band-5-2-2026'],['The Marcus King Band','The Old Coupland Inn & Dancehall','Coupland, TX','Sunday','5/3/2026','7:00 PM','7716728','The-Marcus-King-Band-5-3-2026'],['The Marcus King Band','John T. Floore Country Store','Helotes, TX','Wednesday','5/6/2026','8:00 PM','7716069','The-Marcus-King-Band-5-6-2026'],['The Marcus King Band','Gruene Hall','New Braunfels, TX','Thursday','5/7/2026','9:00 PM','7715838','The-Marcus-King-Band-5-7-2026'],['The Marcus King Band','Billy Bobs','Fort Worth, TX','Friday','5/8/2026','9:00 PM','7716337','The-Marcus-King-Band-5-8-2026'],['The Marcus King Band','Fabulous Fox Theatre - Atlanta','Atlanta, GA','Saturday','5/16/2026','7:30 PM','7797316','The-Marcus-King-Band-5-16-2026'],['The Marcus King Band','Nashville Municipal Auditorium','Nashville, TN','Wednesday','5/27/2026','8:00 PM','7791333','The-Marcus-King-Band-5-27-2026'],['2026 Gulf Coast Jam: Post Malone, Chris Stapleton, Riley Green & Keith Urban - 4 Day Pass','Frank Brown Park','Panama City Beach, FL','Thursday','5/28/2026','TBD','7181094','2026-Gulf-Coast-Jam--Post-Malone--Chris-Stapleton--Riley-Green---Keith-Urban---4-Day-Pass-5-28-2026'],['The Marcus King Band','Apopka Amphitheater','Apopka, FL','Saturday','5/30/2026','6:00 PM','7793162','The-Marcus-King-Band-5-30-2026']],'Marcus King','https://www.ticketnetwork.com');