//
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([['Dylan Gossett','Gruene Hall','New Braunfels, TX','Thursday','2/27/2025','9:30 PM','6891511','Dylan-Gossett-2-27-2025'],['Dylan Gossett','Gruene Hall','New Braunfels, TX','Friday','2/28/2025','8:00 PM','6872208','Dylan-Gossett-2-28-2025'],['Country to Country - 3 Day Pass','O2 Arena - London','London, United Kingdom','Friday','3/14/2025','TBD','6741057','Country-to-Country---3-Day-Pass-3-14-2025'],['Country to Country - 3 Day Pass','OVO Hydro','Glasgow, United Kingdom','Friday','3/14/2025','TBD','6741062','Country-to-Country---3-Day-Pass-3-14-2025'],['Country to Country - 3 Day Pass','The SSE Arena - Belfast','Belfast, United Kingdom','Friday','3/14/2025','TBD','6741065','Country-to-Country---3-Day-Pass-3-14-2025'],['Country to Country: Lainey Wilson, Dylan Gossett & 49 Winchester','O2 Arena - London','London, United Kingdom','Friday','3/14/2025','4:30 PM','6736688','Country-to-Country--Lainey-Wilson--Dylan-Gossett---49-Winchester-3-14-2025'],['Dylan Gossett','Cains Ballroom','Tulsa, OK','Thursday','3/27/2025','8:00 PM','6871748','Dylan-Gossett-3-27-2025'],['Dylan Gossett','The Criterion - Oklahoma City','Oklahoma City, OK','Friday','3/28/2025','7:00 PM','6871996','Dylan-Gossett-3-28-2025'],['Dylan Gossett','Burton Cummings Theatre','Winnipeg, Canada','Friday','4/4/2025','8:00 PM','6872009','Dylan-Gossett-4-4-2025'],['Dylan Gossett','Coors Event Centre - SK','Saskatoon, Canada','Saturday','4/5/2025','7:00 PM','6872010','Dylan-Gossett-4-5-2025']],'Dylan Gossett','https://www.ticketnetwork.com');