$(document).ready(function(){ //Auto Scroll $(window).scroll(function(e) { e.stopPropagation(); var offset = $(window).scrollTop(); $("#menu").css('top', offset); }); $('input.button').button(); $('.demanderef').on('click', function(){ var title = ''; var hrefSuiv = $(this).attr('href'); var href = '/surveillance/demanderef/'; var dialogOpts = { bgiframe: true, title: title, width: 500, height: 200, modal: true, open: function(event, ui) { $(this).html('Chargement...'); $(this).load(href); }, buttons: { Ok: function() { var ref = $('input[name=ref]').val(); var encours = $('input[name=encours]').val(); var email = $('input[name=email]').val(); var href = hrefSuiv+'?ref='+ref+'&encours='+encours+'&email='+email; window.location.href = href; }, Annuler: function() { $(this).dialog('close'); } }, close: function() { $('#dialogsurv').remove(); } }; $('
').dialog(dialogOpts); return false; }); //Tooltip de surveillance $('u[tooltip]').qtip({ content: { attr: 'tooltip' }, style: { classes: 'qtip-dark' }, position: { at: 'top center', my: 'bottom center' } }); $('span#bodacc a').on('click', function(e){ e.preventDefault(); var href = $(this).attr('href'); $('span#bodacc').html('Chargement du bodacc...').load(href); }); });