(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: 1116458, ProductIds : "190260.2.BBECB691C4157222.5658FD23DFD2FF1C.244907,190260.2.BBECB691C4157222.9BF9B06D1DC6133C.246170,190260.2.BBECB691C4157222.A2FF11B2E8F78B6.250115,190260.2.BBECB691C4157222.9FCB5EA8C1AAAE5F.251732,190260.2.BBECB691C4157222.AA0C0A3F1248150F.251740,190260.2.BBECB691C4157222.BEEF79CD350E7AD6.251877,190260.2.BBECB691C4157222.E837DBD6E4B851E6.252082,190260.2.BBECB691C4157222.52D74E6D4CCC6E10.252087,190260.2.BBECB691C4157222.280F3EA57CF9E769.252086,190260.2.BBECB691C4157222.2E8E30005F1AA38B.252095", Url:"https://content.flexlinkspro.com/Product/Widget", BtnColor : "",HeadColor : "",FColor : "",SubId1 : "",SubId2 : "",SubId3 : "",SubId4 : "",SubId5 : "", Guid: "6bf3be85-2d94-4505-82fe-aef7bb24e462"}, type: 'POST', dataType: 'html', success: function (result) { $("#6bf3be85-2d94-4505-82fe-aef7bb24e462").html(result); }, error: function (err) { console.log(err); } }); }); } })(); // We call our anonymous function immediately