//
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([['Greensky Bluegrass','The Rose Music Center at The Heights','Dayton, OH','Wednesday','7/2/2025','6:30 PM','7049002','Greensky-Bluegrass-7-2-2025'],['Greensky Bluegrass','Terminal B At The Outer Harbor','Buffalo, NY','Thursday','7/3/2025','6:30 PM','7049183','Greensky-Bluegrass-7-3-2025'],['Greensky Bluegrass','The Salt Shed Outdoors - Chicago','Chicago, IL','Saturday','7/5/2025','7:00 PM','6876525','Greensky-Bluegrass-7-5-2025'],['4848 Festival: Lake Street Drive, Greensky Bluegrass, & Dark Star Orchestra - 3 Day Pass','Snowshoe Mountain Resort','Snowshoe, WV','Thursday','7/17/2025','TBD','7014322','4848-Festival--Lake-Street-Drive--Greensky-Bluegrass----Dark-Star-Orchestra---3-Day-Pass-7-17-2025'],['Greensky Bluegrass','Asheville Yards Amphitheater','Asheville, NC','Thursday','7/17/2025','6:00 PM','7049184','Greensky-Bluegrass-7-17-2025'],['Greensky Bluegrass','Cohab Space','High Point, NC','Friday','7/18/2025','8:00 PM','7049185','Greensky-Bluegrass-7-18-2025'],['Greensky Bluegrass','Riverfront Live','Cincinnati, OH','Sunday','7/20/2025','6:30 PM','7049003','Greensky-Bluegrass-7-20-2025'],['Greensky Bluegrass','Pier 62 - Seattle','Seattle, WA','Saturday','8/2/2025','6:30 PM','7157706','Greensky-Bluegrass-8-2-2025'],['Targhee Bluegrass Festival: Greensky Bluegrass, Daniel Donato?s Cosmic Country & Yonder Mountain String Band - Saturday','Grand Targhee Resort','Alta, WY','Saturday','8/9/2025','12:30 PM','6924327','Targhee-Bluegrass-Festival--Greensky-Bluegrass--Daniel-Donato-s-Cosmic-Country---Yonder-Mountain-String-Band---Saturday-8-9-2025'],['Greensky Bluegrass','The Mod Club','Toronto, Canada','Wednesday','8/20/2025','7:00 PM','7169190','Greensky-Bluegrass-8-20-2025']],'Greensky Bluegrass','https://www.ticketnetwork.com');