Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*** 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;
- }
Advertisement
Add Comment
Please, Sign In to add comment