var ajaxBaseUrl = ""; $j(document).ready(function () { ajaxBaseUrl = $j("#ajaxBaseUrl").val(); GetCurrentShows() }); function GetCurrentShows() { $j.ajax({ type: "GET", cache: !1, url: ajaxBaseUrl + "/theatre/GetCurrentShowCodes?callback=GetCurrentShowsResult", data: null, crossDomain: !0, dataType: "jsonp" }) } function GetCurrentShowsResult(a) { a.Any && document.getElementById("setcode") && $j("select#setcode").append(a.ShowsList) };
