I am using this code:
$('body').click(function() {
$('.form_wrapper').hide();
});
$('.form_wrapper').click(function(event){
event.stopPropagation();
});
And this HTML:
The problem is that I have links inside the DIV and when they no longer work when clicked.
No comments:
Post a Comment