//
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-03A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Easton Corbin','Haute Spot','Cedar Park, TX','Friday','2/7/2025','7:00 PM','6881367','Easton-Corbin-2-7-2025'],['Easton Corbin','Lori's Road House','West Chester, OH','Saturday','2/15/2025','8:00 PM','6759783','Easton-Corbin-2-15-2025'],['Easton Corbin','Desert Diamond Casino - Sahuarita','Sahuarita, AZ','Saturday','2/22/2025','8:00 PM','6853027','Easton-Corbin-2-22-2025'],['Easton Corbin','The Coyote Store - Gail','Gail, TX','Saturday','3/15/2025','6:00 PM','6939496','Easton-Corbin-3-15-2025'],['Easton Corbin','Newton Theatre','Newton, NJ','Thursday','4/24/2025','8:00 PM','6946554','Easton-Corbin-4-24-2025'],['Dirt Road Revival Concert: Jade Eagleson, Easton Corbin, & Madelin Merlo','Bayshore Community Centre','Owen Sound, Canada','Saturday','4/26/2025','6:40 PM','6939499','Dirt-Road-Revival-Concert--Jade-Eagleson--Easton-Corbin----Madelin-Merlo-4-26-2025'],['SLO Sheriff's Rodeo: Easton Corbin','Paso Robles Event Center','Paso Robles, CA','Friday','5/9/2025','6:00 PM','6939502','SLO-Sheriff-s-Rodeo--Easton-Corbin-5-9-2025'],['Easton Corbin','Stevens County Fairgrounds','Morris, MN','Friday','8/8/2025','7:30 PM','6939504','Easton-Corbin-8-8-2025']],'Easton Corbin','https://www.ticketnetwork.com');