AS2, from an email form for my website:
instance: from_txt, var: from
the onKillFocus part works great, the onSetFocus does not. The input text has “your name here” typed in to begin with.
Please Help!
from_txt.onSetFocus = function() {
if (from == “your name here”) {
from = “”;
}
};
from_txt.onKillFocus = function() {
if (from == “”) {
from = “your name here”;
}
};