Forum Moderators: open
[edited by: tedster at 1:24 pm (utc) on Apr 28, 2010]
[edit reason] no personal URLs, please [/edit]
function getFocus(inputEl) {
if (inputEl.value === inputEl.defaultValue) {
inputEl.value = "";
}
}
function loseFocus(inputEl) {
if (inputEl.value === "") {
inputEl.value = inputEl.defaultValue;
}
}
<input type="text" name="company" value="Company" onfocus="getFocus(this);" onblur="loseFocus(this);" />