Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

html form element naming causing problems

Status
Not open for further replies.

emozley

Technical User
Jan 14, 2003
769
GB
Hi,

I have a number of textareas which I've called 1S, 1I, 2S, 2I etc. and I am trying to prevent a user from entering more than 125 characters.

I found a great function

<SCRIPT LANGUAGE="JavaScript">
<!-- Original: Ronnie T. Moore -->
<!-- Web Site: The JavaScript Source -->

<!-- Dynamic 'fix' by: Nannette Thacker -->
<!-- Web Site: -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! -->

<!-- Begin
function textCounter(field, countfield, maxlimit) {
if (field.value.length > maxlimit) // if too long...trim it!
field.value = field.value.substring(0, maxlimit);
// otherwise, update 'characters left' counter
else
countfield.value = maxlimit - field.value.length;
}
// End -->
</script>

to be used with:

<textarea name="1S" cols="50" rows="8" style="font-family:verdana;font-size:10px;" onKeyDown="textCounter(this.form.1S,this.form.remLen,125);" onKeyUp="textCounter(this.form.1S,this.form.remLen,125);"></textarea>

The problem is it doesn't seem to like the form field beginning with a number. Is there a way round this that doesn't involve renaming all of my fields?

Thanks very much

Ed
 
Hi

If you reference them like that, those [tt]name[/tt]s should be valid identifiers ( only letter, digit and underscore, the first character letter or underscore ).
Code:
<textarea name="1S" cols="50" rows="8" onkeydown="textCounter(this,this.form.[red]elements['[/red]remLen[red]'][/red],125)" onkeyup="textCounter(this,this.form.[red]elements['[/red]remLen[red]'][/red],125)"></textarea>
But better rename those fields.

Note that the visitor will be able to paste the entire Sh?gun if he uses only the mouse.

Feherke.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top