//
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-03A
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([['The Plot In You','The Strand Theatre - RI','Providence, RI','Friday','9/5/2025','7:00 PM','7206078','The-Plot-In-You-9-5-2025'],['The Plot In You','The Dome at Toyota Oakdale Theatre','Wallingford, CT','Saturday','9/6/2025','7:00 PM','7206067','The-Plot-In-You-9-6-2025'],['The Plot In You','Starland Ballroom','Sayreville, NJ','Sunday','9/7/2025','7:00 PM','7206073','The-Plot-In-You-9-7-2025'],['The Plot In You','Pieres Entertainment Center','Fort Wayne, IN','Tuesday','9/9/2025','7:00 PM','7206074','The-Plot-In-You-9-9-2025'],['The Plot In You','The Rave - Milwaukee','Milwaukee, WI','Wednesday','9/10/2025','7:00 PM','7206070','The-Plot-In-You-9-10-2025'],['The Plot In You','The Midland Theatre - MO','Kansas City, MO','Thursday','9/11/2025','7:00 PM','7206071','The-Plot-In-You-9-11-2025'],['The Plot In You','Diamond Ballroom','Oklahoma City, OK','Saturday','9/13/2025','7:00 PM','7206075','The-Plot-In-You-9-13-2025'],['The Plot In You','Ozark Music Hall','Fayetteville, AR','Sunday','9/14/2025','7:00 PM','7206077','The-Plot-In-You-9-14-2025'],['The Plot In You','Jannus Live','St. Petersburg, FL','Tuesday','9/16/2025','7:00 PM','7206072','The-Plot-In-You-9-16-2025'],['The Plot In You','Five Points Theatre','Jacksonville, FL','Wednesday','9/17/2025','7:00 PM','7206068','The-Plot-In-You-9-17-2025'],['The Plot In You','Von Braun Center Mars Music Hall','Huntsville, AL','Thursday','9/18/2025','7:00 PM','7206069','The-Plot-In-You-9-18-2025'],['Aftershock Festival: Korn, Blink-182, Deftones & Bring Me The Horizon - 4 Day Pass','Discovery Park','Sacramento, CA','Thursday','10/2/2025','TBD','6866324','Aftershock-Festival--Korn--Blink-182--Deftones---Bring-Me-The-Horizon---4-Day-Pass-10-2-2025'],['Ice Nine Kills & The Plot In You','Pearl Concert Theater At Palms Casino Resort','Las Vegas, NV','Friday','10/17/2025','7:00 PM','7337380','Ice-Nine-Kills---The-Plot-In-You-10-17-2025']],'The Plot In You','http://www.ticketnetwork.com/en/search/?text=The%20Plot%20In%20You');