//
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([['Ashley Cooke','Cedar County Fairgrounds - NE','Hartington, NE','Sunday','7/20/2025','8:30 PM','6872724','Ashley-Cooke-7-20-2025'],['Ashley Cooke','The Haven of The Wild','Chittenango, NY','Saturday','7/26/2025','7:00 PM','7127263','Ashley-Cooke-7-26-2025'],['Sunfest Country Music Festival: Jordan Davis & Ashley Cooke - Friday','Laketown Ranch Music & Recreation Park','Lake Cowichan, Canada','Friday','8/1/2025','1:00 PM','6807166','Sunfest-Country-Music-Festival--Jordan-Davis---Ashley-Cooke---Friday-8-1-2025'],['Oregon Jamboree: Jordan Davis, Joe Nichols & Ashley Cooke - Sunday','Oregon Jamboree','Sweet Home, OR','Sunday','8/3/2025','11:00 AM','6738616','Oregon-Jamboree--Jordan-Davis--Joe-Nichols---Ashley-Cooke---Sunday-8-3-2025'],['Parker McCollum, Ashley Cooke & Vincent Mason','Selland Arena at Fresno Convention Center','Fresno, CA','Thursday','8/14/2025','7:30 PM','6881871','Parker-McCollum--Ashley-Cooke---Vincent-Mason-8-14-2025'],['Parker McCollum, Ashley Cooke & Vincent Mason','SAP Center','San Jose, CA','Friday','8/15/2025','7:30 PM','6881872','Parker-McCollum--Ashley-Cooke---Vincent-Mason-8-15-2025'],['Parker McCollum, Ashley Cooke & Vincent Mason','Ironstone Amphitheatre At Ironstone Vineyards','Murphys, CA','Saturday','8/16/2025','7:30 PM','6881873','Parker-McCollum--Ashley-Cooke---Vincent-Mason-8-16-2025'],['Parker McCollum, Ashley Cooke & Vincent Mason','BECU Live at Northern Quest Resort & Casino','Airway Heights, WA','Thursday','8/21/2025','7:30 PM','6881874','Parker-McCollum--Ashley-Cooke---Vincent-Mason-8-21-2025'],['Parker McCollum, Ashley Cooke & Vincent Mason','Cascades Amphitheater - WA','Ridgefield, WA','Friday','8/22/2025','7:30 PM','6881875','Parker-McCollum--Ashley-Cooke---Vincent-Mason-8-22-2025'],['Parker McCollum, Ashley Cooke & Vincent Mason','Abbotsford Centre','Abbotsford, Canada','Saturday','8/23/2025','7:30 PM','6881876','Parker-McCollum--Ashley-Cooke---Vincent-Mason-8-23-2025']],'"Ashley Cooke"','https://www.ticketnetwork.com');