//
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-02A
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([['Knot Your Kind & Nookie','The Radio Room Greenville','Greenville, SC','Saturday','4/25/2026','8:00 PM','7665250','Knot-Your-Kind---Nookie-4-25-2026'],['Ottawa Bluesfest: Limp Bizkit, Cypress Hill, Marc Rebillet & Steve Earle - Day 2','Lebreton Flats','Ottawa, Canada','Friday','7/10/2026','12:00 PM','7757182','Ottawa-Bluesfest--Limp-Bizkit--Cypress-Hill--Marc-Rebillet---Steve-Earle---Day-2-7-10-2026'],['Rock Fest Chippewa Valley: Gojira, Limp Bizkit, & The Offspring - 3 Day Pass','Chippewa Valley Festival Grounds','Cadott, WI','Thursday','7/16/2026','TBD','7560961','Rock-Fest-Chippewa-Valley--Gojira--Limp-Bizkit----The-Offspring---3-Day-Pass-7-16-2026'],['Summer of '99 and Beyond Festival: Creed, Limp Bizkit, Bush & Sevendust - 2 Day Pass','Credit Union 1 Amphitheatre','Tinley Park, IL','Saturday','7/18/2026','TBD','7629675','Summer-of--99-and-Beyond-Festival--Creed--Limp-Bizkit--Bush---Sevendust---2-Day-Pass-7-18-2026'],['Louder Than Life Festival:TOOL, Limp Bizkit, Iron Maiden & My Chemical Romance - 4 Day Pass','Highland Festival Grounds at Kentucky Expo Center','Louisville, KY','Thursday','9/17/2026','TBD','7435873','Louder-Than-Life-Festival-TOOL--Limp-Bizkit--Iron-Maiden---My-Chemical-Romance---4-Day-Pass-9-17-2026'],['Louder Than Life Festival: Limp Bizkit - Saturday','Highland Festival Grounds at Kentucky Expo Center','Louisville, KY','Saturday','9/19/2026','12:00 PM','7435876','Louder-Than-Life-Festival--Limp-Bizkit---Saturday-9-19-2026'],['Aftershock Festival: My Chemical Romance, Limp Bizkit, Pierce The Veil & Tool - 4 Day Pass','Discovery Park','Sacramento, CA','Thursday','10/1/2026','TBD','7586692','Aftershock-Festival--My-Chemical-Romance--Limp-Bizkit--Pierce-The-Veil---Tool---4-Day-Pass-10-1-2026']],'Limp Bizkit','http://www.ticketnetwork.com/en/search/?text=Limp%20Bizkit');