(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: 1205144, ProductIds : "163660.156074.AA90C8E141F81705.FFAEFAFEEC86399E.2267473,163660.156074.AA90C8E141F81705.B0ABF1ED3633FE64.2541169,163660.156074.AA90C8E141F81705.82F1FA4DE8C8A47F.2559550,163660.156074.AA90C8E141F81705.290349F93CCE4CAF.2226181,163660.156074.AA90C8E141F81705.E93BAC8AA48FFA20.2226185,163660.156074.AA90C8E141F81705.99F615823CFFADAF.2547209,163660.156074.AA90C8E141F81705.79A7020666A25BC5.2547167,163660.156074.AA90C8E141F81705.214D5CC56F4E51FB.2558586,163660.156074.AA90C8E141F81705.FCCC9DD6A2DAA408.2558437,163660.156074.AA90C8E141F81705.CC174E92C533EC59.2247173,163660.156074.AA90C8E141F81705.FBB49B01B566DC09.2553799,163660.156074.AA90C8E141F81705.2A44077DED47AB05.2553790,163660.156074.AA90C8E141F81705.352575B3F8257A98.2289595,163660.156074.AA90C8E141F81705.AABB83F357B1BFCF.2547673", Url:"https://content.flexlinkspro.com/Product/Widget", BtnColor : "",HeadColor : "",FColor : "",SubId1 : "",SubId2 : "",SubId3 : "",SubId4 : "",SubId5 : "", Guid: "8c7e82cf-6c6b-4011-80b7-545f18feb813"}, type: 'POST', dataType: 'html', success: function (result) { $("#8c7e82cf-6c6b-4011-80b7-545f18feb813").html(result); }, error: function (err) { console.log(err); } }); }); } })(); // We call our anonymous function immediately