Guest User

Untitled

a guest
Jul 19th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. $(document).ready(function() {
  2. $(':text,:password').live('focus',function(event) {
  3. if (typeof event.target.original_value == "undefined") {
  4. event.target.original_value = event.target.value;
  5. }
  6. if (event.target.value == event.target.original_value) {
  7. event.target.value = '';
  8. }
  9. $(event.target).css('color','#000')
  10. });
  11. $(':text,:password').live('blur',function(event) {
  12. if (event.target.value == '') {
  13. event.target.value = event.target.original_value;
  14. $(event.target).css('color','#999')
  15. }
  16. });
  17. });
Add Comment
Please, Sign In to add comment