//
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([['Brian Kelley','King Center For The Performing Arts','Melbourne, FL','Saturday','8/2/2025','8:00 PM','7119930','Brian-Kelley-8-2-2025'],['Brian Kelley','The Ranch Concert Hall & Saloon','Fort Myers, FL','Sunday','8/3/2025','9:15 PM','7119933','Brian-Kelley-8-3-2025'],['Brian Kelley','Jannus Live','St. Petersburg, FL','Thursday','8/7/2025','8:00 PM','7119900','Brian-Kelley-8-7-2025'],['Brian Kelley','Ponte Vedra Concert Hall','Ponte Vedra Beach, FL','Friday','8/8/2025','8:00 PM','7120002','Brian-Kelley-8-8-2025'],['Brian Kelley','The Plaza Live','Orlando, FL','Saturday','8/9/2025','8:00 PM','7119932','Brian-Kelley-8-9-2025'],['Brian Kelley','The Signal - TN','Chattanooga, TN','Thursday','8/21/2025','8:00 PM','7119934','Brian-Kelley-8-21-2025'],['Brian Kelley','Hargray Capitol Theatre','Macon, GA','Friday','8/22/2025','8:00 PM','7120015','Brian-Kelley-8-22-2025'],['Brian Kelley','Boot Barn Hall At Bourbon Brothers - GA','Gainesville, GA','Saturday','8/23/2025','8:00 PM','7120016','Brian-Kelley-8-23-2025'],['Brian Kelley','The Moon','Tallahassee, FL','Thursday','8/28/2025','7:00 PM','7119931','Brian-Kelley-8-28-2025'],['Brian Kelley','Bottle & Cork','Dewey Beach, DE','Tuesday','9/2/2025','8:00 PM','7119935','Brian-Kelley-9-2-2025'],['Brian Kelley','The Norva','Norfolk, VA','Thursday','9/4/2025','7:30 PM','7119899','Brian-Kelley-9-4-2025'],['Brian Kelley','BoatYard Eats','Cornelius, NC','Friday','9/5/2025','8:00 PM','7120021','Brian-Kelley-9-5-2025'],['Brian Kelley','Hard Rock Hotel & Casino Bristol','Bristol, VA','Saturday','9/6/2025','8:00 PM','7119574','Brian-Kelley-9-6-2025'],['Brian Kelley','Bowstring Pizza and Brewyard','Raleigh, NC','Sunday','9/7/2025','6:00 PM','7120019','Brian-Kelley-9-7-2025']],'Brian Kelley','http://www.ticketnetwork.com/en/search/?text=Brian%20Kelley');