
Untitled
By: a guest on
May 10th, 2012 | syntax:
None | size: 0.52 KB | hits: 23 | expires: Never
/*** Placeholder WAP ***/
window.onload = function() {
placeholder_init(document.getElementById("payment_account_ccn"));
}
function placeholder_init(el) {
if(el.title=="") el.title = el.value;
var defaultvalue = el.value;
el.addEventListener("focus", placeholder_focus, false);
el.addEventListener("blur", placeholder_blur, false);
}
function placeholder_focus(){
if (this.value == this.title) this.value = "";
}
function placeholder_blur() {
if (this.value == "") this.value = this.title;
}