Guest User

Untitled

a guest
Jul 16th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <script type="text/javascript">
  2.  
  3. $(document).ready(function() {
  4.  
  5.  
  6. $.fn.cleardefault = function() {
  7. return this.focus(function() {
  8. if( this.value == this.defaultValue ) {
  9. this.value = "";
  10. }
  11. }).blur(function() {
  12. if( !this.value.length ) {
  13. this.value = this.defaultValue;
  14. }
  15. });
  16. };
  17. $(".clearit input, .clearit textarea").cleardefault();
  18.  
  19. });
  20.  
  21. </script>
Add Comment
Please, Sign In to add comment