//
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-01A
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([['Little Feat','The Plaza Live','Orlando, FL','Friday','4/10/2026','8:00 PM','7560068','Little-Feat-4-10-2026'],['Little Feat','Tennessee Theatre','Knoxville, TN','Monday','4/13/2026','7:30 PM','7558217','Little-Feat-4-13-2026'],['Little Feat','Shaftman Performance Hall at Jefferson Center','Roanoke, VA','Tuesday','4/14/2026','7:30 PM','7279772','Little-Feat-4-14-2026'],['Little Feat','Soldiers & Sailors Memorial Auditorium','Chattanooga, TN','Thursday','4/16/2026','7:30 PM','7558218','Little-Feat-4-16-2026'],['Little Feat','Montgomery Performing Arts Centre','Montgomery, AL','Friday','4/17/2026','8:00 PM','7558219','Little-Feat-4-17-2026'],['Little Feat','Majestic Theatre - Dallas','Dallas, TX','Sunday','4/19/2026','7:00 PM','7558220','Little-Feat-4-19-2026'],['Little Feat','Paramount Theatre - Austin, TX','Austin, TX','Monday','4/20/2026','8:00 PM','7560069','Little-Feat-4-20-2026'],['Little Feat','713 Music Hall','Houston, TX','Sunday','5/3/2026','8:00 PM','7558221','Little-Feat-5-3-2026'],['Little Feat','The Eureka Springs City Auditorium','Eureka Springs, AR','Tuesday','5/5/2026','7:30 PM','7560070','Little-Feat-5-5-2026'],['Sailin Shoes - Little Feat Tribute','Daryl's House','Pawling, NY','Wednesday','5/6/2026','7:00 PM','7571477','Sailin-Shoes---Little-Feat-Tribute-5-6-2026'],['Little Feat','Uptown Theater - KC','Kansas City, MO','Wednesday','5/6/2026','8:00 PM','7558222','Little-Feat-5-6-2026'],['Little Feat','Englert Theatre','Iowa City, IA','Friday','5/8/2026','7:30 PM','7560071','Little-Feat-5-8-2026'],['Little Feat','Arcada Theatre','Saint Charles, IL','Saturday','5/9/2026','8:00 PM','7560072','Little-Feat-5-9-2026'],['Dark Star Jubilee Festival: Dark Star Orchestra, Little Feat & Melvin Seals - 3 Day Pass','Legend Valley','Thornville, OH','Friday','5/22/2026','TBD','7550628','Dark-Star-Jubilee-Festival--Dark-Star-Orchestra--Little-Feat---Melvin-Seals---3-Day-Pass-5-22-2026']],'Little Feat','http://www.ticketnetwork.com/en/search/?text=Little%20Feat');