//
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([['Drive By Truckers, Deer Tick & Thelma and The Sleaze','Stable Hall','San Antonio, TX','Thursday','5/29/2025','8:00 PM','6987123','Drive-By-Truckers--Deer-Tick---Thelma-and-The-Sleaze-5-29-2025'],['Drive By Truckers, Deer Tick & Thelma and The Sleaze','White Oak Music Hall - Downstairs','Houston, TX','Friday','5/30/2025','6:00 PM','6984872','Drive-By-Truckers--Deer-Tick---Thelma-and-The-Sleaze-5-30-2025'],['Longhorn Jubilee: Drive-By Truckers, Deer Tick, Thelma and The Sleaze, J. Isaiah Evans & The Boss Tweed','Longhorn Ballroom','Dallas, TX','Saturday','5/31/2025','5:00 PM','7078810','Longhorn-Jubilee--Drive-By-Truckers--Deer-Tick--Thelma-and-The-Sleaze--J--Isaiah-Evans---The-Boss-Tweed-5-31-2025'],['Drive By Truckers, Deer Tick & Thelma and The Sleaze','Stubbs Waller Creek Amphitheater','Austin, TX','Sunday','6/1/2025','6:00 PM','6985505','Drive-By-Truckers--Deer-Tick---Thelma-and-The-Sleaze-6-1-2025'],['Drive By Truckers, Deer Tick & Thelma and The Sleaze','The Bridge At Santa Fe Brewing Company','Santa Fe, NM','Tuesday','6/3/2025','7:00 PM','6987124','Drive-By-Truckers--Deer-Tick---Thelma-and-The-Sleaze-6-3-2025'],['Drive By Truckers, Deer Tick & Thelma and The Sleaze','The Fonda Theatre','Los Angeles, CA','Thursday','6/5/2025','8:00 PM','6985772','Drive-By-Truckers--Deer-Tick---Thelma-and-The-Sleaze-6-5-2025'],['Drive By Truckers, Deer Tick & Thelma and The Sleaze','Pappy & Harriet's Pioneertown Palace - Outdoor Stage','Pioneertown, CA','Friday','6/6/2025','7:00 PM','6987126','Drive-By-Truckers--Deer-Tick---Thelma-and-The-Sleaze-6-6-2025'],['Drive By Truckers, Deer Tick & Thelma and The Sleaze','Warfield','San Francisco, CA','Saturday','6/7/2025','7:00 PM','6985771','Drive-By-Truckers--Deer-Tick---Thelma-and-The-Sleaze-6-7-2025'],['Drive By Truckers, Deer Tick & Thelma and The Sleaze','Grand Sierra Theatre','Reno, NV','Sunday','6/8/2025','8:00 PM','6987128','Drive-By-Truckers--Deer-Tick---Thelma-and-The-Sleaze-6-8-2025'],['Drive By Truckers, Deer Tick & Thelma and The Sleaze','Revolution Hall - Portland','Portland, OR','Tuesday','6/10/2025','7:00 PM','6985301','Drive-By-Truckers--Deer-Tick---Thelma-and-The-Sleaze-6-10-2025']],'Drive By Truckers','https://www.ticketnetwork.com');