Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 10th, 2012  |  syntax: None  |  size: 0.52 KB  |  hits: 23  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  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. }