//
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-04A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Drake Milligan','Cains Ballroom','Tulsa, OK','Thursday','10/9/2025','8:00 PM','7022721','Drake-Milligan-10-9-2025'],['Redwest Country Music Festival: Kacey Musgraves, Post Malone & Noah Kahan - 3 Day Pass','Utah State Fairpark','Salt Lake City, UT','Friday','10/10/2025','TBD','7214908','Redwest-Country-Music-Festival--Kacey-Musgraves--Post-Malone---Noah-Kahan---3-Day-Pass-10-10-2025'],['Drake Milligan','Beer City Music Hall','Oklahoma City, OK','Friday','10/10/2025','8:00 PM','7297360','Drake-Milligan-10-10-2025'],['Redwest Country Music Festival: Noah Kahan, The Red Clay Strays & Sam Barber - Sunday','Utah State Fairpark','Salt Lake City, UT','Sunday','10/12/2025','11:30 AM','7214911','Redwest-Country-Music-Festival--Noah-Kahan--The-Red-Clay-Strays---Sam-Barber---Sunday-10-12-2025'],['Lainey Wilson, Ernest & Drake Milligan','Thompson Boling Arena at Food City Center','Knoxville, TN','Friday','10/24/2025','7:00 PM','6964714','Lainey-Wilson--Ernest---Drake-Milligan-10-24-2025'],['Lainey Wilson, Ernest & Drake Milligan','Spectrum Center','Charlotte, NC','Saturday','10/25/2025','7:00 PM','6964717','Lainey-Wilson--Ernest---Drake-Milligan-10-25-2025'],['Drake Milligan','Boot Barn Hall At Bourbon Brothers - GA','Gainesville, GA','Friday','10/31/2025','7:30 PM','7301818','Drake-Milligan-10-31-2025'],['Lainey Wilson, Muscadine Bloodline & Drake Milligan','The Cynthia Woods Mitchell Pavilion','Spring, TX','Saturday','11/1/2025','7:00 PM','6964649','Lainey-Wilson--Muscadine-Bloodline---Drake-Milligan-11-1-2025'],['Drake Milligan','Five Points Theatre','Jacksonville, FL','Saturday','11/1/2025','8:00 PM','7101330','Drake-Milligan-11-1-2025'],['Lainey Wilson, Ernest & Drake Milligan','Benchmark International Arena','Tampa, FL','Friday','11/7/2025','7:00 PM','6964718','Lainey-Wilson--Ernest---Drake-Milligan-11-7-2025']],'Drake Milligan','https://www.ticketnetwork.com');