//GENERATED AND POWERED BY XADIA //AT 28/04/2024 10:29:32 //// $(function () { $('#btnCourriel').unbind('click', loadContact).bind('click', loadContact); }); function loadContact() { var strURL = $("#hfURLSite").val() + '/MiniSite/contactArtisan.aspx?ID=' + $("#HF_ArtisanID").val(); var dlg = $('
'); $iframe = $('

Chargement du formulaire...

'); dlg.html($iframe); dlg.dialog({ autoOpen: true, width: "auto", modal: true, title: "Formulaire de contact", draggable: false }); $iframe.load(function () { $("#msgload").remove(); $(this).contents().find('.Close').bind('click', function () { $("#dialogContact").dialog("close"); }); $(this).contents().find('#lkMention').bind('click', function () { location.replace(this.href); }); }); return false; }