//
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([['Post Malone & Jelly Roll','Oracle Park','San Francisco, CA','Tuesday','7/1/2025','6:30 PM','6836599','Post-Malone---Jelly-Roll-7-1-2025'],['2025 Country Thunder Wisconsin: Cole Swindell, Hardy, Jelly Roll & Dierks Bentley - 4 Day Pass','Country Thunder At Shadow Hill Ranch','Twin Lakes, WI','Thursday','7/17/2025','TBD','6583584','2025-Country-Thunder-Wisconsin--Cole-Swindell--Hardy--Jelly-Roll---Dierks-Bentley---4-Day-Pass-7-17-2025'],['2025 Country Thunder Wisconsin: Jelly Roll, Tyler Hubbard, & Ashley Cook - Saturday','Country Thunder At Shadow Hill Ranch','Twin Lakes, WI','Saturday','7/19/2025','12:00 PM','6583548','2025-Country-Thunder-Wisconsin--Jelly-Roll--Tyler-Hubbard----Ashley-Cook---Saturday-7-19-2025'],['Jelly Roll','North Dakota State Fairgrounds','Minot, ND','Sunday','7/20/2025','8:00 PM','6938094','Jelly-Roll-7-20-2025'],['YQM Country Fest: Kane Brown, Jelly Roll & Luke Bryan - 3 Day Pass','Site MusiquArt Site','Dieppe, Canada','Thursday','8/21/2025','TBD','6790329','YQM-Country-Fest--Kane-Brown--Jelly-Roll---Luke-Bryan---3-Day-Pass-8-21-2025'],['YQM Country Fest: Jelly Roll, Chase Rice & Joe Nichols - Friday','Site MusiquArt Site','Dieppe, Canada','Friday','8/22/2025','1:00 PM','6786959','YQM-Country-Fest--Jelly-Roll--Chase-Rice---Joe-Nichols---Friday-8-22-2025'],['Post Malone & Jelly Roll','Tottenham Hotspur New Stadium','London, United Kingdom','Monday','9/8/2025','5:00 PM','7165520','Post-Malone---Jelly-Roll-9-8-2025'],['iHeartRadio Music Festival: Ed Sheeran, Maroon 5, Bryan Adams & Jelly Roll - 2 Day Pass','T-Mobile Arena','Las Vegas, NV','Friday','9/19/2025','TBD','6976260','iHeartRadio-Music-Festival--Ed-Sheeran--Maroon-5--Bryan-Adams---Jelly-Roll---2-Day-Pass-9-19-2025'],['iHeartRadio Music Festival: Ed Sheeran, Tim McGraw, Jelly Roll & Mariah Carey','T-Mobile Arena','Las Vegas, NV','Saturday','9/20/2025','7:30 PM','6969289','iHeartRadio-Music-Festival--Ed-Sheeran--Tim-McGraw--Jelly-Roll---Mariah-Carey-9-20-2025']],'Jelly Roll','https://www.ticketnetwork.com');