Clear Input Field Value When Selected
function clearDefault(el) { ย if (el.defaultValue==el.value) el.value = “” } // Then call this function using the ‘onfocus’ value of your input box: <input value=“Your… Read More »Clear Input Field Value When Selected