//
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-04A
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([['Common','BMO Pavilion','Milwaukee, WI','Thursday','6/25/2026','7:00 PM','8035182','Common-6-25-2026'],['Standard Of Living, Common Kings, Airview, Mixtape & Dan Erickson','Rec Room - Buffalo','Buffalo, NY','Friday','6/26/2026','6:00 PM','8048868','Standard-Of-Living--Common-Kings--Airview--Mixtape---Dan-Erickson-6-26-2026'],['BBC Proms Series: Prog Rock - A Fanfare for the Common Man','Royal Albert Hall','London, United Kingdom','Saturday','7/18/2026','7:30 PM','7896087','BBC-Proms-Series--Prog-Rock---A-Fanfare-for-the-Common-Man-7-18-2026'],['Common Kings','Haute Spot','Cedar Park, TX','Saturday','8/8/2026','6:00 PM','8012697','Common-Kings-8-8-2026'],['Common Kings','Buck's Backyard','Buda, TX','Sunday','8/9/2026','6:00 PM','8005858','Common-Kings-8-9-2026'],['Dogs In A Pile','Redstone Room At River Music Experience','Davenport, IA','Wednesday','8/12/2026','8:00 PM','7969960','Dogs-In-A-Pile-8-12-2026'],['Rooted In Harmony: Common Kings & Steel Pulse','Adventist Health Amphitheater','Tulare, CA','Saturday','8/15/2026','5:00 PM','7814499','Rooted-In-Harmony--Common-Kings---Steel-Pulse-8-15-2026'],['Common Sense','Belly Up Tavern','Solana Beach, CA','Saturday','8/15/2026','8:00 PM','8006100','Common-Sense-8-15-2026'],['Mission Bayfest: Rebelution, Kolohe Kai & The Offspring - 3 Day Pass','Mariner's Point Park','San Diego, CA','Friday','10/16/2026','TBD','7825002','Mission-Bayfest--Rebelution--Kolohe-Kai---The-Offspring---3-Day-Pass-10-16-2026'],['Mission Bayfest: Kolohe Kai - Saturday','Mariner's Point Park','San Diego, CA','Saturday','10/17/2026','12:00 PM','7825006','Mission-Bayfest--Kolohe-Kai---Saturday-10-17-2026'],['Common','Dr. Phillips Center - Walt Disney Theater','Orlando, FL','Friday','11/13/2026','8:00 PM','7960947','Common-11-13-2026']],'common','http://www.ticketnetwork.com/en/search/?text=common');