Element clicked

$("#btn").click(function(){
          $(this).data('clicked', true);
        });

if(jQuery('#btn').data('clicked')) {
                        ev.preventDefault();
                        jQuery('#search').hide();
                      }

Комментарии