Topic: Clear intial value on enter
Hi there.
I'm about to use TinyMCE for the first time.
I'm using some JS code to remove the default values of the input fields on a form but this doesn't seem to work in a TinyMCE textarea.
How can I achieve this in the easiest way possible?
Current JS:
function clearDefault(f) {
f.value='';
f.style.color='#000';
}
This is called in the <input> tag as onfocus="clearDefault(this)".
Thanks in advance.
MSP