(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: 1250911, ProductIds : "177323.2.F948E891B55815C6.5F4A085B95645317.1000626185620524,177323.2.F948E891B55815C6.23C27DB8BE2B188.1000705487752112,177323.2.F948E891B55815C6.76584742B1D27FB2.1000627694409218,177323.2.F948E891B55815C6.E0B864CFCBE7E453.1000627693409034,177323.2.F948E891B55815C6.7AC0284FC42F7DD4.1000704696218853,177323.2.F948E891B55815C6.6927DFBEC556CAC5.1000708441464202,177323.2.F948E891B55815C6.98DB032DD98F2786.1000703888639468", Url:"https://content.flexlinkspro.com/Product/Widget", BtnColor : "",HeadColor : "",FColor : "",SubId1 : "",SubId2 : "",SubId3 : "",SubId4 : "",SubId5 : "", Guid: "86098bfd-af14-436a-9b60-013e71b16b27"}, type: 'POST', dataType: 'html', success: function (result) { $("#86098bfd-af14-436a-9b60-013e71b16b27").html(result); }, error: function (err) { console.log(err); } }); }); } })(); // We call our anonymous function immediately