//
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-01A
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 Oh Hellos','The Fillmore - San Francisco','San Francisco, CA','Thursday','11/6/2025','7:30 PM','7114737','The-Oh-Hellos-11-6-2025'],['The Beths','The Fillmore - San Francisco','San Francisco, CA','Saturday','11/8/2025','8:00 PM','7119598','The-Beths-11-8-2025'],['Richy Mitch and The Coal Miners','The Fillmore - San Francisco','San Francisco, CA','Tuesday','11/11/2025','8:00 PM','7071613','Richy-Mitch-and-The-Coal-Miners-11-11-2025'],['The Darkness','The Fillmore - San Francisco','San Francisco, CA','Thursday','11/13/2025','8:00 PM','7094738','The-Darkness-11-13-2025'],['The Happy Fits','The Fillmore - San Francisco','San Francisco, CA','Sunday','11/16/2025','8:00 PM','7126861','The-Happy-Fits-11-16-2025'],['Gogo Penguin','The Fillmore - San Francisco','San Francisco, CA','Friday','11/21/2025','8:00 PM','7111965','Gogo-Penguin-11-21-2025']],'san francisco concerts november fillmore','http://www.ticketnetwork.com/en/search/?text=san%20francisco%20concerts%20november%20fillmore');