dc_jt Posted May 4, 2007 Share Posted May 4, 2007 Ive done the following which works fine in Firefox but doesnt work at all in IE. Anyone know why? Thanks <script language="javascript"> function calculateTextBox(textBoxName, maximum){ length = document.getElementById(textBoxName).value.length; if(length > maximum){ document.getElementById(textBoxName).value = document.getElementById(textBoxName).value.substring(0, maximum); }else{ remaining = maximum - length; document.getElementById('text_limit_'+textBoxName).innerHTML = remaining ; } } </script> <td><strong>Short Description *</strong></td><td> <textarea class="txtarea400" style="width:100%; height:250;" rows="10" id="description" name="description" onkeyup="calculateTextBox('description', 200);"><?=(isset($_POST['description']))?stripslashes(htmlentities($_POST['description'])):htmlentities($oObj->description)?></textarea> Maximum 200 characters, <span id="text_limit_description" >200</span> remaining </td> </tr> Thanks Quote Link to comment Share on other sites More sharing options...
nogray Posted May 4, 2007 Share Posted May 4, 2007 just add var infront of length var length = document.getElementById(textBoxName).value.length; Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.