//
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([['Duval's Comedy Jam','Moran Theater At Jacksonville Center for the Performing Arts','Jacksonville, FL','Friday','7/25/2025','8:00 PM','7145181','Duval-s-Comedy-Jam-7-25-2025'],['Girls Night - The Musical','Terry Theater At Jacksonville Center for the Performing Arts','Jacksonville, FL','Saturday','8/2/2025','7:30 PM','6960715','Girls-Night---The-Musical-8-2-2025'],['Jeezy','Moran Theater At Jacksonville Center for the Performing Arts','Jacksonville, FL','Saturday','8/23/2025','8:00 PM','7111253','Jeezy-8-23-2025'],['Paw Patrol Live','Moran Theater At Jacksonville Center for the Performing Arts','Jacksonville, FL','Saturday','8/30/2025','10:00 AM','7047186','Paw-Patrol-Live-8-30-2025'],['Paw Patrol Live','Moran Theater At Jacksonville Center for the Performing Arts','Jacksonville, FL','Saturday','8/30/2025','2:00 PM','7047188','Paw-Patrol-Live-8-30-2025'],['Paw Patrol Live','Moran Theater At Jacksonville Center for the Performing Arts','Jacksonville, FL','Sunday','8/31/2025','11:00 AM','7047189','Paw-Patrol-Live-8-31-2025'],['Jacksonville Symphony: Video Games Live','Jacoby Symphony Hall At Jacksonville Center for the Performing Arts','Jacksonville, FL','Friday','9/19/2025','7:30 PM','7265809','Jacksonville-Symphony--Video-Games-Live-9-19-2025'],['Jacksonville Symphony: Guitar Quartet','Jacoby Symphony Hall At Jacksonville Center for the Performing Arts','Jacksonville, FL','Saturday','9/20/2025','7:30 PM','7265797','Jacksonville-Symphony--Guitar-Quartet-9-20-2025'],['Jacksonville Symphony: Courtney Lewis - Copland's Clarinet Concerto','Jacoby Symphony Hall At Jacksonville Center for the Performing Arts','Jacksonville, FL','Friday','9/26/2025','7:30 PM','7265828','Jacksonville-Symphony--Courtney-Lewis---Copland-s-Clarinet-Concerto-9-26-2025'],['Jacksonville Symphony: Courtney Lewis - Copland's Clarinet Concerto','Jacoby Symphony Hall At Jacksonville Center for the Performing Arts','Jacksonville, FL','Saturday','9/27/2025','7:30 PM','7265865','Jacksonville-Symphony--Courtney-Lewis---Copland-s-Clarinet-Concerto-9-27-2025']],'Times Union Center Jacksonville','http://www.ticketnetwork.com/en/search/?text=Times%20Union%20Center%20Jacksonville');