//
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([['John Mellencamp','Acrisure Amphitheater','Grand Rapids, MI','Friday','7/10/2026','8:00 PM','7678717','John-Mellencamp-7-10-2026'],['John Mellencamp','Credit Union 1 Amphitheatre','Tinley Park, IL','Saturday','7/11/2026','8:00 PM','7678718','John-Mellencamp-7-11-2026'],['John Mellencamp','Morton Amphitheater','Riverside, MO','Monday','7/13/2026','8:00 PM','7678720','John-Mellencamp-7-13-2026'],['John Mellencamp','Mystic Lake Amphitheatre - Shakopee','Shakopee, MN','Tuesday','7/14/2026','8:00 PM','7678721','John-Mellencamp-7-14-2026'],['John Mellencamp','Pine Knob Music Theatre','Clarkston, MI','Thursday','7/16/2026','8:00 PM','7678722','John-Mellencamp-7-16-2026'],['John Mellencamp','Ruoff Music Center','Noblesville, IN','Saturday','7/18/2026','8:00 PM','7678724','John-Mellencamp-7-18-2026'],['John Mellencamp','Riverbend Music Center','Cincinnati, OH','Sunday','7/19/2026','8:00 PM','7678716','John-Mellencamp-7-19-2026'],['John Mellencamp','Blossom Music Center','Cuyahoga Falls, OH','Tuesday','7/21/2026','8:00 PM','7678726','John-Mellencamp-7-21-2026'],['John Mellencamp','Xfinity Center - MA','Mansfield, MA','Friday','7/24/2026','8:00 PM','7678727','John-Mellencamp-7-24-2026'],['John Mellencamp','PNC Bank Arts Center','Holmdel, NJ','Saturday','7/25/2026','8:00 PM','7678729','John-Mellencamp-7-25-2026'],['John Mellencamp','Northwell at Jones Beach Theater','Wantagh, NY','Sunday','7/26/2026','8:00 PM','7678730','John-Mellencamp-7-26-2026'],['John Mellencamp','Jiffy Lube Live','Bristow, VA','Wednesday','7/29/2026','8:00 PM','7678731','John-Mellencamp-7-29-2026'],['John Mellencamp','Truliant Amphitheater','Charlotte, NC','Thursday','7/30/2026','8:00 PM','7678732','John-Mellencamp-7-30-2026'],['John Mellencamp','Ameris Bank Amphitheatre','Alpharetta, GA','Saturday','8/1/2026','8:00 PM','7678733','John-Mellencamp-8-1-2026'],['John Mellencamp','MidFlorida Credit Union Amphitheatre At The Florida State Fairgrounds','Tampa, FL','Monday','8/3/2026','8:00 PM','7678735','John-Mellencamp-8-3-2026'],['John Mellencamp','The Cynthia Woods Mitchell Pavilion','Spring, TX','Thursday','8/6/2026','8:00 PM','7678739','John-Mellencamp-8-6-2026'],['John Mellencamp','Talking Stick Resort Amphitheatre','Phoenix, AZ','Sunday','8/9/2026','8:00 PM','7678741','John-Mellencamp-8-9-2026'],['John Mellencamp','Hollywood Bowl','Los Angeles, CA','Monday','8/10/2026','8:00 PM','7678747','John-Mellencamp-8-10-2026'],['John Mellencamp','Shoreline Amphitheatre - CA','Mountain View, CA','Wednesday','8/12/2026','8:00 PM','7678748','John-Mellencamp-8-12-2026']],'John Mellencamp','http://www.ticketnetwork.com/en/search/?text=John Mellencamp');