(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: 1215038, ProductIds : "156863.156074.E85C52500225834D.9BDE3E6B50134EA3.7834-022M,156863.156074.E85C52500225834D.F54E2ED3CAF4BFBF.P101191M13,156863.156074.E85C52500225834D.5942FD15B3DD4003.20083002M,156863.156074.E85C52500225834D.DC02114316FD3B88.20326002S,156863.156074.E85C52500225834D.ABAAD79AF4AF1A19.D5223010M,156863.156074.E85C52500225834D.5FD2239FC1D34E75.6G704GEH7,156863.156074.E85C52500225834D.107290B5E4729F7B.6H198U904,158794.1.9363.156BA261885C6B13.5621721,158794.1.9363.4104654984798558.8098087,158794.1.9363.AAD5D4861129DF78.8099106,158794.1.9363.55C1FEE2B482E785.5633646,158794.1.9363.E8E03CB990F43E3.5709447,158794.1.9363.748FFFFED47E73EB.5633725,158794.1.9363.7B3B8F2892611818.8097728,160697.156074.CC543A4DD010D0C2.122F73D2B60EE2D3.805280064,160697.156074.CC543A4DD010D0C2.E132E24C39AF4B3C.A29NA0014,160697.156074.CC543A4DD010D0C2.11146C11643DF018.805280064.5,157107.2.65C558AC0B43E305.A5B4E7C843C0DB7A.11442262,157107.2.65C558AC0B43E305.DB9F24C46EB4BBBD.11442585,157107.2.65C558AC0B43E305.9170C631942B21D3.11451098,157107.2.65C558AC0B43E305.C46934E7711832E1.11456171", Url:"https://content.flexlinkspro.com/Product/Widget", BtnColor : "",HeadColor : "",FColor : "",SubId1 : "",SubId2 : "",SubId3 : "",SubId4 : "",SubId5 : "", Guid: "c89a382c-f1c7-4bc2-b905-4e29e76d525a"}, type: 'POST', dataType: 'html', success: function (result) { $("#c89a382c-f1c7-4bc2-b905-4e29e76d525a").html(result); }, error: function (err) { console.log(err); } }); }); } })(); // We call our anonymous function immediately