Advertisement
Guest User

Untitled

a guest
Feb 18th, 2014
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.         $("#to-top").click(function(e){
  2.             var bas_name = $("#inp_name").val();
  3.             var bas_address = $("#inp_address").val();
  4.             var bas_zipcode = $("#inp_zipcode").val();
  5.             var bas_city = $("#inp_city").val();
  6.             if(bas_name === "" || bas_address === "" || bas_zipcode === "" || bas_city === "") {
  7.                 $("body").animate({scrollTop: 0});
  8.             } else {
  9.                 e.preventDefault();
  10.                 $("#form").submit();
  11.             }
  12.         });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement