Files
aws/web_elements/javascripts/aws_func_clear.tjs
Pascal Obry 5bf233b8e3 Repository clean-up.
Remove all unneeded svn:executable properties.
Remove the eol-style property on testme25.out for proper handling of
non standard EOL.
2006-09-13 09:20:27 +00:00

14 lines
307 B
Plaintext

@@-- Function Body
@@-- $1 = the id of the area to clear
@@SET@@ FC_PLACEHOLDER = $1
{
var placeholder = $('@_FC_PLACEHOLDER_@');
if (placeholder.tagName == "TEXTAREA" || placeholder.tagName == "INPUT")
placeholder.value = "";
else
placeholder.innerHTML = "";
}