function RemoveSpaces(ctrlId) {
val = document.getElementById(ctrlId).value;
document.getElementById(ctrlId).value = val.split(' ').join('');
}
onblur="RemoveSpaces(this);"
Tuesday, August 4, 2009
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment