//
var TN_Widget = function() {
return {
//Options
newWindow : true,
linkText : "Tickets",
tixUrl : "https://www.ticketnetwork.com/tix/",
trackingParams : "",
custLink : true,
//depricated
kbid : "",
//Overwrittable functions
trackingLink :"",
CreateCustomUrl : function(row) {
return this.tixUrl + row[7] + "-tickets-"+ row[6] + ".aspx";
},
CreateEventRow : function(row, isAlt) {
return "
" +
row[3] +" "+"" +
row[4] + " "+"" +
row[5] + " | "+"" +
row[0] +" | " +
row[1] +" " +
row[2] +" | "+""+ this.linkText+ " |
";
},
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,kywrds,url) {
if(typeof(TN_SetWidgetOptions) == "function")
TN_SetWidgetOptions();
//for backwards compatability
if(this.kbid != "")
this.trackingParams = "?img=249&kbid="+this.kbid;
var newTable = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newTable.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newTable.join('') + '
';
} else
document.write('' + newTable.join('') + '
');
if(eventData.length >= 100 && kywrds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
if(eventData.length > 0) {
document.getElementById("previewNote").style.display = "none";
}
}
};
}();
//BPW-TNSERV-04A
TN_Widget.CreateTable([['Kacey Musgraves','The Pinnacle At Nashville Yards','Nashville, TN','Thursday','2/27/2025','8:00 PM','6877768','Kacey-Musgraves-2-27-2025'],['Extra Innings Festival: The Lumineers, Kacey Musgraves & Kings of Leon - 2 Day Pass','Tempe Beach Park','Tempe, AZ','Friday','2/28/2025','TBD','6675507','Extra-Innings-Festival--The-Lumineers--Kacey-Musgraves---Kings-of-Leon---2-Day-Pass-2-28-2025'],['Extra Innings Festival: Kacey Musgraves, Kings of Leon, Maren Morris & Grace Potter - Saturday','Tempe Beach Park','Tempe, AZ','Saturday','3/1/2025','12:00 PM','6675509','Extra-Innings-Festival--Kacey-Musgraves--Kings-of-Leon--Maren-Morris---Grace-Potter---Saturday-3-1-2025'],['2025 New Orleans Jazz And Heritage Festival: Weekend 1: Dave Matthews Band, Lil Wayne and The Roots, Kacey Musgraves & John Fogerty - 4 Day Pass','New Orleans Fair Grounds','New Orleans, LA','Thursday','4/24/2025','TBD','6549122','2025-New-Orleans-Jazz-And-Heritage-Festival--Weekend-1--Dave-Matthews-Band--Lil-Wayne-and-The-Roots--Kacey-Musgraves---John-Fogerty---4-Day-Pass-4-24-2025'],['Zootown Festival: Hozier, Kacey Musgraves, Jason Isbell and The 400 Unit & Lake Street Dive - 2 Day Pass','Missoula County Fairgrounds','Missoula, MT','Friday','7/4/2025','TBD','6838674','Zootown-Festival--Hozier--Kacey-Musgraves--Jason-Isbell-and-The-400-Unit---Lake-Street-Dive---2-Day-Pass-7-4-2025'],['Hinterland Music Festival: Tyler The Creator, Kacey Musgraves, & Lana Del Rey - 3 Day Pass','Avenue of the Saints Amphitheater and Event Center','Saint Charles, IA','Friday','8/1/2025','TBD','6886806','Hinterland-Music-Festival--Tyler-The-Creator--Kacey-Musgraves----Lana-Del-Rey---3-Day-Pass-8-1-2025'],['Hinterland Music Festival: Kacey Musgraves, The Marias, & Still Woozy - Saturday (Time: TBD)','Avenue of the Saints Amphitheater and Event Center','Saint Charles, IA','Saturday','8/2/2025','1:00 PM','6951802','Hinterland-Music-Festival--Kacey-Musgraves--The-Marias----Still-Woozy---Saturday--Time--TBD--8-2-2025']],'Kacey Musgraves','https://www.ticketnetwork.com/ticket/Kacey-Musgraves-events.aspx');