/    Sign up×
Community /Pin to ProfileBookmark

javascript working in IE not working in FireFox

i have written the javascript to limit the max characters and count them and even do paste and delete options and nothing works in fire fox but works fine in IE can any one please help me with this problem.

to post a comment
JavaScript

2 Comments(s)

Copy linkTweet thisAlerts:
@TheBearMayNov 28.2008 — Here's something that should work in both environments...

<i>
</i>&lt;script type="text/javascript"&gt;
function checkLength(len, cnter, parnt){
if (len &gt; 255) {
alert ("Maximum length exceeded");
parnt.value=parnt.value.substr(0,255);
len = parnt.value.length;
}
document.getElementById(cnter).innerHTML= (len)+" characters used, "+(255-len)+" characters remaining";
}
&lt;/script&gt;

[code=html]
<textarea name="comments" rows="5" cols="60" onkeyup="checkLength(this.value.length, 'comlength', this)" ></textarea>
<br>
<span id="comlength" style="font-size:xx-small"></span>
[/code]
Copy linkTweet thisAlerts:
@rvinthaauthorNov 28.2008 — thank you very much i really appreciate that
×

Success!

Help @rvintha spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.16,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...