•
•
•
•
What is DaniWeb IT Discussion Community?
You're currently browsing the JavaScript / DHTML / AJAX section within the Web Development category of DaniWeb, a massive community of 402,047 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,527 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our JavaScript / DHTML / AJAX advertiser: Lunarpages Web Hosting
Views: 3914 | Replies: 2
•
•
Join Date: Nov 2004
Posts: 1
Reputation:
Rep Power: 0
Solved Threads: 0
Hi,
I`m writing a mod for a forum but I`m getting an error with a piece of Javascript which checks the length of text typed into a text area.
The error only happens in IE and not firefox/mozilla
This is the JS
Anyone see a problem with it?
I`m writing a mod for a forum but I`m getting an error with a piece of Javascript which checks the length of text typed into a text area.
The error only happens in IE and not firefox/mozilla
This is the JS
<script type="text/javascript">
function check_length( l_max , textBox )
{
item = eval( "document.theForm." + textBox );
if( !item )
{
return false;
}
if( l_max < item.value.length )
{
alert( "{ipb.lang['l_over']}" + l_max + " {ipb.lang['l_characters']}." );
}
if( l_max == item.value.length )
{
alert( "{ipb.lang['l_equal']}" + l_max + " {ipb.lang['l_characters']}." );
}
if( l_max > item.value.length )
{
alert( "{ipb.lang['max_is']}" + l_max + " {ipb.lang['l_characters']}. {ipb.lang['youve_used']}" + item.value.length + " {ipb.lang['l_characters']}." );
}
}
</script>Anyone see a problem with it?
•
•
•
•
•
•
•
•
DaniWeb JavaScript / DHTML / AJAX Marketplace
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
- Javascript links not working (Web Browsers)
- JavaScript's window.opener (JavaScript / DHTML / AJAX)
- recommendations for JavaScript learning resources? (JavaScript / DHTML / AJAX)
- Javascript/HTML problem!!! (JavaScript / DHTML / AJAX)
- Javascript Useful? (IT Careers and Business)
Other Threads in the JavaScript / DHTML / AJAX Forum
- Previous Thread: using variable for dynamic from elements
- Next Thread: Posting form data to an Oracle database



Threaded Mode