(function() { /******** Localize jQuery variable *********/ var jQuery; /******** Load jQuery if not present *********/ if (window.jQuery === undefined || window.jQuery.fn.jquery !== '3.1.1') { var script_tag = document.createElement('script'); script_tag.setAttribute("type","text/javascript"); script_tag.setAttribute("src","https://code.jquery.com/jquery-3.1.1.min.js"); script_tag.setAttribute("integrity","sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="); script_tag.setAttribute("crossorigin","anonymous"); if (script_tag.readyState) { script_tag.onreadystatechange = function () { /******** For old versions of IE *********/ if (this.readyState == 'complete' || this.readyState == 'loaded') { scriptLoadHandler(); } }; } else { /********* Other browsers *********/ script_tag.onload = scriptLoadHandler; } /********* Try to find the head, otherwise default to the documentElement *********/ (document.getElementsByTagName("head")[0] || document.documentElement).appendChild(script_tag); } else { /********* The jQuery version on the window is the one we want to use *********/ jQuery = window.jQuery; main(); } /******** Called once jQuery has loaded ******/ function scriptLoadHandler() { /******** Restore $ and window.jQuery to their previous values and store the *********/ /******** new jQuery in our local jQuery variable *********/ jQuery = window.jQuery.noConflict(true); /******** Call our main function *********/ main(); } /******** Our main function ********/ function main() { jQuery(document).ready(function($) { $.ajax({ url: "https://content.flexlinkspro.com/Product/Widget", data: { DomainId: 1070088, ProductIds : "127.1.C70.FE99EE6C0BC1FC8C.885089,127.1.C70.67AA2FD35E3178C0.8447433,127.1.C70.F199F9D0E0ADBE80.6509952,127.1.C70.8C8EF89896A5F32E.6795333,127.1.C70.1B7FF643B34BD330.8520353,127.1.C70.C2D2F1226EB1618B.8448023,127.1.C70.EC0EEB6C03119F1B.6162307,127.1.C70.4E0C3C0B12B28796.5184192,127.1.C70.F463F6B520F153EB.10541526,127.1.C70.974B38E5F3386494.4662620,127.1.C70.7EB0CFF4591DE078.4758210,127.1.C70.3949F36663448D8C.7262847,127.1.C70.8BCFC36668B508B4.8403822,127.1.C70.909D4723763E3D42.8403822,127.1.C70.638C4EB53094A6DB.8448023,127.1.C70.651AA3A42E0B1E60.8448034", Url:"https://content.flexlinkspro.com/Product/Widget", BtnColor : "",HeadColor : "",FColor : "",SubId1 : "",SubId2 : "",SubId3 : "",SubId4 : "",SubId5 : "", Guid: "18adbfb4-eb0f-4f73-9079-b1b78796e602"}, type: 'POST', dataType: 'html', success: function (result) { $("#18adbfb4-eb0f-4f73-9079-b1b78796e602").html(result); }, error: function (err) { console.log(err); } }); }); } })(); // We call our anonymous function immediately