//
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([['John Moreland','Off Broadway','St. Louis, MO','Thursday','7/24/2025','8:00 PM','7241507','John-Moreland-7-24-2025'],['John Moreland','Tannahill's Tavern and Music Hall','Fort Worth, TX','Saturday','7/26/2025','9:00 PM','7198733','John-Moreland-7-26-2025'],['John Moreland','The Sinclair Music Hall ','Cambridge, MA','Tuesday','8/12/2025','8:00 PM','7075621','John-Moreland-8-12-2025'],['John Moreland','The Stone Church','Brattleboro, VT','Thursday','8/14/2025','8:00 PM','7080447','John-Moreland-8-14-2025'],['John Moreland','House of Independents','Asbury Park, NJ','Friday','8/15/2025','7:00 PM','7078737','John-Moreland-8-15-2025'],['John Moreland','Thunderbird Cafe','Pittsburgh, PA','Tuesday','8/19/2025','8:00 PM','7249222','John-Moreland-8-19-2025'],['John Moreland','The Ninth Ward At Babeville','Buffalo, NY','Wednesday','8/20/2025','8:00 PM','7121140','John-Moreland-8-20-2025'],['John Moreland','Black Box Auditorium at The United Theatre','Westerly, RI','Saturday','8/23/2025','8:00 PM','7145603','John-Moreland-8-23-2025'],['John Moreland','Buskirk-Chumley Theater','Bloomington, IN','Tuesday','9/9/2025','7:00 PM','7184283','John-Moreland-9-9-2025'],['John Moreland & Justin Bloss','The Ramkat','Winston Salem, NC','Tuesday','9/16/2025','8:00 PM','7221886','John-Moreland---Justin-Bloss-9-16-2025'],['John Moreland & Mariel Buckley','Tumbleroot Brewery and Distillery','Santa Fe, NM','Wednesday','9/24/2025','7:30 PM','7188078','John-Moreland---Mariel-Buckley-9-24-2025'],['John Moreland','Pappy & Harriet's Pioneertown Palace - Indoor Stage','Pioneertown, CA','Sunday','9/28/2025','9:00 PM','7198718','John-Moreland-9-28-2025'],['John Moreland','Felton Music Hall','Felton, CA','Friday','10/3/2025','8:00 PM','7253038','John-Moreland-10-3-2025'],['John Moreland','Mystic Theatre','Petaluma, CA','Saturday','10/4/2025','8:00 PM','7190285','John-Moreland-10-4-2025'],['John Moreland','Main Street Crossing','Tomball, TX','Sunday','10/19/2025','6:00 PM','7203153','John-Moreland-10-19-2025']],'John Moreland','http://www.ticketnetwork.com/en/search/?text=John%20Moreland');