//
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([['Charley Crockett','Downtown Billings SkatePark','Billings, MT','Tuesday','6/30/2026','7:00 PM','7780476','Charley-Crockett-6-30-2026'],['Charley Crockett','Spruce Meadows','Calgary, Canada','Saturday','7/4/2026','7:00 PM','7579734','Charley-Crockett-7-4-2026'],['Charley Crockett','Ford Wyoming Center','Casper, WY','Wednesday','7/8/2026','7:30 PM','7774788','Charley-Crockett-7-8-2026'],['Minnesota Country Club Festival: Treaty Oak Revival, The Red Clay Strays & Charley Crockett - 2 Day Pass','Harriet Island Regional Park','Saint Paul, MN','Friday','7/10/2026','TBD','7709706','Minnesota-Country-Club-Festival--Treaty-Oak-Revival--The-Red-Clay-Strays---Charley-Crockett---2-Day-Pass-7-10-2026'],['Grand Targhee Festival: Marcus King Band, Charley Crockett & Ryan Bingham and The Texas Gentlemen - 2 Day Pass','Grand Targhee Resort','Alta, WY','Friday','7/10/2026','TBD','7599818','Grand-Targhee-Festival--Marcus-King-Band--Charley-Crockett---Ryan-Bingham-and-The-Texas-Gentlemen---2-Day-Pass-7-10-2026'],['Minnesota Country Club Festival: Treaty Oak Revival, Charley Crockett, & Stephen Wilson Jr. - Friday','Harriet Island Regional Park','Saint Paul, MN','Friday','7/10/2026','12:00 PM','7709707','Minnesota-Country-Club-Festival--Treaty-Oak-Revival--Charley-Crockett----Stephen-Wilson-Jr----Friday-7-10-2026'],['Grand Targhee Festival: Charley Crockett, Ryan Bingham and The Texas Gentlemen & JJ Grey and Mofro - Saturday','Grand Targhee Resort','Alta, WY','Saturday','7/11/2026','12:00 PM','7599820','Grand-Targhee-Festival--Charley-Crockett--Ryan-Bingham-and-The-Texas-Gentlemen---JJ-Grey-and-Mofro---Saturday-7-11-2026'],['Charley Crockett','Outdoor Amphitheater At Ford Idaho Center ','Nampa, ID','Sunday','7/12/2026','7:30 PM','7774790','Charley-Crockett-7-12-2026'],['Charley Crockett','McMenamins Historic Edgefield Amphitheater','Troutdale, OR','Tuesday','7/14/2026','6:30 PM','7775368','Charley-Crockett-7-14-2026'],['Charley Crockett','BECU Live at Northern Quest Resort & Casino','Airway Heights, WA','Wednesday','7/15/2026','7:30 PM','7774791','Charley-Crockett-7-15-2026']],'Charley Crockett','https://www.ticketnetwork.com');