Guest User

Untitled

a guest
May 10th, 2012
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. /*** Placeholder WAP ***/
  2. window.onload = function() {
  3. placeholder_init(document.getElementById("payment_account_ccn"));
  4. }
  5.  
  6. function placeholder_init(el) {
  7. if(el.title=="") el.title = el.value;
  8. var defaultvalue = el.value;
  9. el.addEventListener("focus", placeholder_focus, false);
  10. el.addEventListener("blur", placeholder_blur, false);
  11. }
  12. function placeholder_focus(){
  13. if (this.value == this.title) this.value = "";
  14. }
  15. function placeholder_blur() {
  16. if (this.value == "") this.value = this.title;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment