//
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-02A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Scotty McCreery','Showplace Theatre At Riverwind Casino','Norman, OK','Saturday','5/10/2025','8:00 PM','6997463','Scotty-McCreery-5-10-2025'],['Scotty McCreery','Billy Bobs','Fort Worth, TX','Friday','5/16/2025','10:00 PM','7006671','Scotty-McCreery-5-16-2025'],['Pasadena Strawberry Festival: Scotty McCreery','Pasadena Convention Center & Municipal Fairgrounds','Pasadena, TX','Saturday','5/17/2025','8:00 PM','7068150','Pasadena-Strawberry-Festival--Scotty-McCreery-5-17-2025'],['Bi-Mart Country Bash: Scotty McCreery','Arena At Ford Idaho Center','Nampa, ID','Thursday','6/12/2025','7:00 PM','6873014','Bi-Mart-Country-Bash--Scotty-McCreery-6-12-2025'],['Scotty McCreery','Rotary Amphitheatre - Woodward Park','Fresno, CA','Friday','6/13/2025','7:00 PM','7062293','Scotty-McCreery-6-13-2025'],['KSON All American Summer: Scotty McCreery, The Band Perry, Kelsey Hart & Will Moseley','Frontwave Arena','Oceanside, CA','Saturday','6/14/2025','7:00 PM','7062634','KSON-All-American-Summer--Scotty-McCreery--The-Band-Perry--Kelsey-Hart---Will-Moseley-6-14-2025'],['Winstock Country Music Festival: Jordan Davis, Thomas Rhett, Scotty McCreery & Dustin Lynch - 2 Day Pass','Winstock Music Festival Grounds','Winsted, MN','Friday','6/20/2025','TBD','6722148','Winstock-Country-Music-Festival--Jordan-Davis--Thomas-Rhett--Scotty-McCreery---Dustin-Lynch---2-Day-Pass-6-20-2025'],['Jordan Davis & Scotty McCreery','Denny Sanford Premier Center','Sioux Falls, SD','Saturday','6/21/2025','8:15 PM','6772017','Jordan-Davis---Scotty-McCreery-6-21-2025'],['Scotty McCreery','Stampede Arena - Greeley','Greeley, CO','Thursday','7/3/2025','8:00 PM','6965933','Scotty-McCreery-7-3-2025'],['Country Concert At Hickory Hill Lakes: Brad Paisley, Brantley Gilbert & Scotty McCreery - Thursday (Time: TBD)','Country Concert At Hickory Hill Lakes','Fort Loramie, OH','Thursday','7/10/2025','12:00 PM','6755340','Country-Concert-At-Hickory-Hill-Lakes--Brad-Paisley--Brantley-Gilbert---Scotty-McCreery---Thursday--Time--TBD--7-10-2025']],'"Scotty Mccreery"','https://www.ticketnetwork.com');