Guest User

Untitled

a guest
Jul 12th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. $(document).ready(function(){
  2. var val;
  3. $(".txt-mini, .txt-small").focus(function(){
  4. val = $(this).attr("value");
  5. $(this).attr("value", "");
  6. }).blur(function(){
  7. if $(this).attr("value").length == 0{
  8. $(this).attr("value", val);
  9. }
  10. });
  11. });
Add Comment
Please, Sign In to add comment