Hi guys..
I'm trying to understand how to write a script which will clear to input value when mouse is on focus,
and the opposite (when onblur)
Please can anyone can write it down, how to do that… I'm sure someone did it before…
This is really simple option which needed to be as default option in the admin panel.
BTW i Tried this, but it didn't work!
function ff_email_action(element, action)
{
switch (action) {
case 'focus':
if(this.value=='some content') this.value='';
default:;
} // switch
} // ff_email_action
Thanks!