Compartilhe esta página
Alertas de Empregos
‘); //Add the fade layer to bottom of the body tag.
$(‘#fade’).css({‘filter’ : ‘alpha(opacity=80)’}).fadeIn(); //Fade in the fade layer – .css({‘filter’ : ‘alpha(opacity=80)’}) is used to fix the IE Bug on fading transparencies
return false;
});
//Close Popups and Fade Layer
$(‘a.close, #fade’).live(‘click’, function() { //When clicking on the close or fade layer…
$(‘#fade , .active_popup’).fadeOut(function() {
$(‘.active_popup’).removeClass(‘active_popup’);
$(‘#fade, a.close’).remove(); //fade them both out
});
return false;
});
});
Fonte