//
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 + "" +
"![](//s3.amazonaws.com/TNService/pl-widget/images/arrow.png) |
";
},
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([['Breaking Benjamin & Staind','Jiffy Lube Live','Bristow, VA','Wednesday','5/21/2025','5:45 PM','6860834','Breaking-Benjamin---Staind-5-21-2025'],['Pierce The Veil, Sleeping with Sirens & Daisy Grenade','Jiffy Lube Live','Bristow, VA','Saturday','5/24/2025','7:00 PM','6861034','Pierce-The-Veil--Sleeping-with-Sirens---Daisy-Grenade-5-24-2025'],['Styx, Kevin Cronin & Don Felder','Jiffy Lube Live','Bristow, VA','Saturday','7/12/2025','6:45 PM','6868947','Styx--Kevin-Cronin---Don-Felder-7-12-2025'],['Nelly, Ja Rule & Eve','Jiffy Lube Live','Bristow, VA','Wednesday','7/23/2025','8:00 PM','6872254','Nelly--Ja-Rule---Eve-7-23-2025'],['Toto, Christopher Cross, & Men at Work','Jiffy Lube Live','Bristow, VA','Wednesday','8/13/2025','6:45 PM','6874425','Toto--Christopher-Cross----Men-at-Work-8-13-2025'],['Thomas Rhett, Tucker Wetmore & The Castellows','Jiffy Lube Live','Bristow, VA','Friday','8/22/2025','7:30 PM','6710411','Thomas-Rhett--Tucker-Wetmore---The-Castellows-8-22-2025'],['Hozier','Jiffy Lube Live','Bristow, VA','Tuesday','9/16/2025','8:00 PM','6963237','Hozier-9-16-2025'],['Tyler Childers','Jiffy Lube Live','Bristow, VA','Saturday','9/27/2025','8:00 PM','6826152','Tyler-Childers-9-27-2025'],['Keith Urban, Chase Matthew & Alana Springsteen','Jiffy Lube Live','Bristow, VA','Saturday','10/4/2025','7:00 PM','6871557','Keith-Urban--Chase-Matthew---Alana-Springsteen-10-4-2025']],'','https://www.ticketnetwork.com');