Guest User

Untitled

a guest
May 26th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. $("INPUT.auto-hint, TEXTAREA.auto-hint").focus ->
  2. if $(this).val() is $(this).attr("title")
  3. $(this).val ""
  4. $(this).removeClass "auto-hint"
  5.  
  6. $("INPUT.auto-hint, TEXTAREA.auto-hint").blur ->
  7. if $(this).val() is "" and $(this).attr("title") isnt ""
  8. $(this).val $(this).attr("title")
  9. $(this).addClass "auto-hint"
  10.  
  11. $("INPUT.auto-hint, TEXTAREA.auto-hint").each ->
  12. return if $(this).attr("title") is ""
  13. if $(this).val() is ""
  14. $(this).val $(this).attr("title")
  15. else
  16. $(this).removeClass "auto-hint"
Add Comment
Please, Sign In to add comment