//
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 t = row[4].split("/");
t[0] = months[t[0]];
t[2] = ", " + t[2];
return "
" +
t[0] + " " + "" + t[1] + "" +
t[2] + " " +
row[3].substring(0,3) + " " +
row[5] + " | " +
row[0] + " " +
row[1] + " - " +
row[2] + " | " + this.btnText + "" +
" |
";
},
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 newTable = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newTable.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
var footerLink = "";
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else if(document.querySelector(".tnpl_results_container") != null) {
document.querySelector(".tnpl_results_container").innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else
document.write("" + newTable.join('') + "" + footerLink + "
");
}
};
}();
//BPW-TNSERV-01A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['CR Sings: The Music of Bob Dylan','Opus Concert Cafe','Cedar Rapids, IA','Friday','10/24/2025','7:30 PM','7363684','CR-Sings--The-Music-of-Bob-Dylan-10-24-2025'],['CR Sings: The Music of Bob Dylan','Opus Concert Cafe','Cedar Rapids, IA','Saturday','10/25/2025','7:30 PM','7363687','CR-Sings--The-Music-of-Bob-Dylan-10-25-2025'],['Watching The River Flow - Tribute To Bob Dylan','Berklee Performance Center - Boston','Boston, MA','Wednesday','11/5/2025','8:00 PM','7373978','Watching-The-River-Flow---Tribute-To-Bob-Dylan-11-5-2025'],['bob. - Tribute to Bob Dylan','Charleston Pour House','Charleston, SC','Thursday','12/11/2025','8:30 PM','7466747','bob----Tribute-to-Bob-Dylan-12-11-2025'],['Dylan Gossett','Billy Bobs','Fort Worth, TX','Wednesday','12/31/2025','10:00 PM','7477854','Dylan-Gossett-12-31-2025'],['A Celebration of American Music From Bob Dylan To Bonnie Raitt','Irvine Barclay Theatre','Irvine, CA','Sunday','3/15/2026','5:00 PM','7272725','A-Celebration-of-American-Music-From-Bob-Dylan-To-Bonnie-Raitt-3-15-2026'],['Cristina Vane & Brennen Leigh: A Celebration of American Music from Bob Dylan to Bonnie Raitt','Lone Tree Arts Center','Littleton, CO','Thursday','3/19/2026','7:30 PM','7224601','Cristina-Vane---Brennen-Leigh--A-Celebration-of-American-Music-from-Bob-Dylan-to-Bonnie-Raitt-3-19-2026']],'"Bob Dylan"','https://www.ticketnetwork.com');