Guest User

Untitled

a guest
Jul 20th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. $("input").focus(function() {
  2. $(this).attr("placeholder", "enter your email address...");
  3. $(".material-icons").show();
  4. });
  5.  
  6.  
  7. $('body').click(function(e){
  8. if ( !$(e.target).is('input') && !$(e.target).is('.material-icons') ) {
  9. $(".material-icons").hide();
  10. }
  11. });
  12.  
  13. $('.clear-input').click(function(){
  14. $('input').val('')
  15. });
Add Comment
Please, Sign In to add comment