$(function() {
$('.error').hide();
          $("button").click(function() {
     if ($("input#email").val() == "") {
        $("label#email_error").show();
        $("input#email").focus();
        return false;
      }  
    });
  });
