//
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([['Marshmello','Del Mar Fairgrounds','Del Mar, CA','Friday','6/19/2026','7:30 PM','7734167','Marshmello-6-19-2026'],['Chicago White Sox vs. Kansas City Royals (Post Game Concert by Marshmello)','Rate Field','Chicago, IL','Friday','6/26/2026','6:40 PM','7368946','Chicago-White-Sox-vs--Kansas-City-Royals--Post-Game-Concert-by-Marshmello--6-26-2026'],['Boise Music Festival: Marshmello, Sean Paul, Everclear, Eve 6 & MKTO','Expo Idaho ','Garden City, ID','Saturday','6/27/2026','10:00 AM','7417725','Boise-Music-Festival--Marshmello--Sean-Paul--Everclear--Eve-6---MKTO-6-27-2026'],['Marshmello','Encore Beach Club','Las Vegas, NV','Saturday','6/27/2026','11:00 AM','7836030','Marshmello-6-27-2026'],['Marshmello','Encore Beach Club','Las Vegas, NV','Saturday','7/18/2026','11:00 AM','7836067','Marshmello-7-18-2026'],['Marshmello','Ventura County Fairgrounds','Ventura, CA','Thursday','7/30/2026','7:30 PM','8000268','Marshmello-7-30-2026'],['Cincinnati Reds vs. Pittsburgh Pirates (Post Game Concert by Marshmello)','Great American Ball Park','Cincinnati, OH','Friday','7/31/2026','6:10 PM','7369374','Cincinnati-Reds-vs--Pittsburgh-Pirates--Post-Game-Concert-by-Marshmello--7-31-2026'],['Marshmello','Encore Beach Club','Las Vegas, NV','Saturday','8/22/2026','11:00 AM','7836068','Marshmello-8-22-2026'],['Marshmello','Encore Beach Club','Las Vegas, NV','Sunday','9/6/2026','11:00 AM','7836031','Marshmello-9-6-2026'],['Pokemon Night Out: Marshmello & Alison Wonderland','Intuit Dome','Inglewood, CA','Saturday','10/24/2026','7:30 PM','7875002','Pokemon-Night-Out--Marshmello---Alison-Wonderland-10-24-2026']],'Marshmello','http://www.ticketnetwork.com/en/search/?text=Marshmello');