//
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 dateArray = row[4].split('/');
var date = months[dateArray[0]] + " " + dateArray[1];
var parking = row[0].split(':')[0]
if (parking !== "PARKING") {
return "
";
}
},
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 newResults = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newResults.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newResults.join('') + '
';
} else
document.write('' + newResults.join('') + '
');
if(eventData.length >= 101 && kwds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
}
};
}();
//BPW-TNSERV-03A
TN_Widget.AddCss('//tn-widget.seatics.com/widget2Css/results-style-1.css');
TN_Widget.AddCss('//s3.amazonaws.com/ticketnetwork/fonts/TTNorms/TTNorms.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'],['Southern Strings Music Festival: Infamous Stringdusters & Daniel Donato's Cosmic Country - Friday','Bruce's Field','Aiken, SC','Friday','10/2/2026','5:00 PM','8031132','Southern-Strings-Music-Festival--Infamous-Stringdusters---Daniel-Donato-s-Cosmic-Country---Friday-10-2-2026'],['The Infamous Stringdusters','Neighborhood Theatre','Charlotte, NC','Thursday','10/15/2026','8:00 PM','8121560','The-Infamous-Stringdusters-10-15-2026']],'The Infamous Stringdusters','http://www.ticketnetwork.com/en/search/?text=The%20Infamous%20Stringdusters');