//
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([['George Strait, Zach Top & Dylan Gossett','Jones AT&T Stadium','Lubbock, TX','Friday','4/24/2026','TBD','7566202','George-Strait--Zach-Top---Dylan-Gossett-4-24-2026'],['Mumford and Sons, Sierra Ferrell & Dylan Gossett','Folsom Field','Boulder, CO','Saturday','6/6/2026','7:30 PM','7748368','Mumford-and-Sons--Sierra-Ferrell---Dylan-Gossett-6-6-2026'],['Mumford and Sons & Dylan Gossett','Dickies Arena','Fort Worth, TX','Monday','6/8/2026','7:30 PM','7748337','Mumford-and-Sons---Dylan-Gossett-6-8-2026'],['Mumford and Sons & Dylan Gossett','Walmart AMP','Rogers, AR','Tuesday','6/9/2026','7:30 PM','7748338','Mumford-and-Sons---Dylan-Gossett-6-9-2026'],['Mumford and Sons, Caamp & Dylan Gossett','Wrigley Field','Chicago, IL','Thursday','6/11/2026','6:30 PM','7748339','Mumford-and-Sons--Caamp---Dylan-Gossett-6-11-2026'],['Mumford and Sons, Caamp & Dylan Gossett','Rogers Stadium At Downsview Airport','Toronto, Canada','Saturday','6/13/2026','6:30 PM','7748364','Mumford-and-Sons--Caamp---Dylan-Gossett-6-13-2026'],['Mumford and Sons & Dylan Gossett','The Pavilion At Star Lake','Burgettstown, PA','Sunday','6/14/2026','7:30 PM','7748340','Mumford-and-Sons---Dylan-Gossett-6-14-2026'],['Mumford and Sons & Dylan Gossett','Maine Savings Amphitheater','Bangor, ME','Tuesday','6/16/2026','6:00 PM','7748341','Mumford-and-Sons---Dylan-Gossett-6-16-2026'],['Wild Trails Festival: Dylan Gossett, Tucker Wetmore & Koe Wetzel - 3 Day Pass','West Virginia State Fair','Lewisburg, WV','Thursday','6/18/2026','TBD','7573567','Wild-Trails-Festival--Dylan-Gossett--Tucker-Wetmore---Koe-Wetzel---3-Day-Pass-6-18-2026'],['Wild Trails Festival: Dylan Gossett & Evan Honer - Thursday (Time: TBD)','West Virginia State Fair','Lewisburg, WV','Thursday','6/18/2026','12:00 PM','7573569','Wild-Trails-Festival--Dylan-Gossett---Evan-Honer---Thursday--Time--TBD--6-18-2026']],'Dylan Gossett','https://www.ticketnetwork.com');