//
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-03A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['The Infamous Stringdusters','Pine Creek Lodge','Livingston, MT','Friday','8/21/2026','7:00 PM','8125923','The-Infamous-Stringdusters-8-21-2026'],['The Infamous Stringdusters','The Showbox','Seattle, WA','Thursday','9/10/2026','7:30 PM','7919083','The-Infamous-Stringdusters-9-10-2026'],['The Infamous Stringdusters','Revolution Hall - Portland','Portland, OR','Friday','9/11/2026','7:30 PM','7917374','The-Infamous-Stringdusters-9-11-2026'],['The Infamous Stringdusters','Tower Theatre - OR','Bend, OR','Saturday','9/12/2026','8:30 PM','8082411','The-Infamous-Stringdusters-9-12-2026'],['The Infamous Stringdusters','McDonald Theatre','Eugene, OR','Sunday','9/13/2026','8:00 PM','7874275','The-Infamous-Stringdusters-9-13-2026'],['The Infamous Stringdusters','The Guild Theatre - Menlo Park','Menlo Park, CA','Wednesday','9/16/2026','8:00 PM','7917404','The-Infamous-Stringdusters-9-16-2026'],['The Infamous Stringdusters','Troubadour','West Hollywood, CA','Thursday','9/17/2026','7:30 PM','7920622','The-Infamous-Stringdusters-9-17-2026'],['The Infamous Stringdusters','Belly Up Tavern','Solana Beach, CA','Friday','9/18/2026','9:15 PM','7917420','The-Infamous-Stringdusters-9-18-2026'],['Pickin' In The Pines: The Infamous Stringdusters, Wood Box Heroes & Woody Platt and The Bluegrass Gentlemen - Saturday','Pepsi Amphitheatre at Fort Tuthill','Flagstaff, AZ','Saturday','9/19/2026','10:00 AM','8042561','Pickin--In-The-Pines--The-Infamous-Stringdusters--Wood-Box-Heroes---Woody-Platt-and-The-Bluegrass-Gentlemen---Saturday-9-19-2026'],['Pickin' In The Pines: The Infamous Stringdusters, Blue Highway & Bronwyn Keith-Hynes - Sunday','Pepsi Amphitheatre at Fort Tuthill','Flagstaff, AZ','Sunday','9/20/2026','9:30 AM','8042569','Pickin--In-The-Pines--The-Infamous-Stringdusters--Blue-Highway---Bronwyn-Keith-Hynes---Sunday-9-20-2026']],'The Infamous Stringdusters','https://www.ticketnetwork.com');