Javascript clear field on focus
When a field gets focus it must be cleared.
It's used by filling in the score in the dart claculators.
Example
(html)
onfocus="clearDart(this)
(javascript)
function clearDart(Input)
{
Input.value = ''
}
It's used by filling in the score in the dart claculators.
Example
(html)
onfocus="clearDart(this)
(javascript)
function clearDart(Input)
{
Input.value = ''
}

0 Comments:
Post a Comment
<< Home