Guest User

Untitled

a guest
Jul 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. $(document).ready(function(){
  2. $('#emailfield').click(function() {
  3. if ($(this).val() == 'Your Email') {
  4. $(this).data('original', $(this).val()).val('');
  5. }
  6. });
  7.  
  8. $('#emailfield').blur(function() {
  9. if ($(this).val() == '') {
  10. $(this).val($(this).data('original'));
  11. }
  12. });
  13. });
Add Comment
Please, Sign In to add comment