//
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([['Whiskey Myers, Wade Bowen & The Ransom Brothers','The Lumberyard Canyon','Canyon, TX','Friday','4/10/2026','7:30 PM','7733599','Whiskey-Myers--Wade-Bowen---The-Ransom-Brothers-4-10-2026'],['Basin Red Dirt BBQ & Music Festival: Whiskey Myers','Basin PBS','Midland, TX','Saturday','4/11/2026','12:00 PM','7683458','Basin-Red-Dirt-BBQ---Music-Festival--Whiskey-Myers-4-11-2026'],['Wiggy Thump Festival: Whiskey Myers, Stoney LaRue, & The Band Feel','Anderson County Youth Livestock Pavillion','Palestine, TX','Saturday','4/25/2026','12:00 PM','7715357','Wiggy-Thump-Festival--Whiskey-Myers--Stoney-LaRue----The-Band-Feel-4-25-2026'],['The Black Crowes, Whiskey Myers & Southall','Moody Center ATX','Austin, TX','Sunday','5/17/2026','6:30 PM','7708915','The-Black-Crowes--Whiskey-Myers---Southall-5-17-2026'],['The Black Crowes, Whiskey Myers & Southall','Walmart AMP','Rogers, AR','Tuesday','5/19/2026','6:30 PM','7708916','The-Black-Crowes--Whiskey-Myers---Southall-5-19-2026'],['The Black Crowes, Whiskey Myers & Southall','Bridgestone Arena','Nashville, TN','Thursday','5/21/2026','6:30 PM','7708917','The-Black-Crowes--Whiskey-Myers---Southall-5-21-2026'],['The Black Crowes, Whiskey Myers & Southall','Ameris Bank Amphitheatre','Alpharetta, GA','Saturday','5/23/2026','6:30 PM','7708918','The-Black-Crowes--Whiskey-Myers---Southall-5-23-2026'],['The Black Crowes, Whiskey Myers & Southall','Coca-Cola Amphitheater at the BJCC','Birmingham, AL','Sunday','5/24/2026','6:30 PM','7708919','The-Black-Crowes--Whiskey-Myers---Southall-5-24-2026'],['The Black Crowes, Whiskey Myers & Southall','Brandon Amphitheater','Brandon, MS','Tuesday','5/26/2026','6:30 PM','7708920','The-Black-Crowes--Whiskey-Myers---Southall-5-26-2026'],['The Black Crowes, Whiskey Myers & Southall','The Wharf Amphitheatre','Orange Beach, AL','Wednesday','5/27/2026','6:30 PM','7708921','The-Black-Crowes--Whiskey-Myers---Southall-5-27-2026']],'"Whiskey Myers"','https://www.ticketnetwork.com');