Monday 8 September 2014

[SOLVED]Hide DIV when click outside with jQuery

Use this in jquery or view(inside the script tag)

 $('body').click(function(){
    $('div').hide();
});

Its working.

Happy coding.

No comments:

Post a Comment