IreneLing Posted October 23, 2011 Share Posted October 23, 2011 I have a function which is use to check chinese input in a textarea then set the maximum length , it works with IE , Opera , Chrome except firefox . Is there any way to solve this problem ? Just in case....I will put my function here.... function testChinese() { countA = 0; for(var i=0; i<bulksend.inputtext.value.length; i++) { curText = bulksend.inputtext.value.charCodeAt(i); if(curText > 127) { countA += 1; } } if(countA>0) return true; } function setlength(){ min = 0; limit = 0; if(testChinese() == true) { min = 70; limit = 66; } else { min = 160; limit = 156; } var typedtext = document.getElementById('inputtext').value; .........continue....... Thanks for every reply . Link to comment https://forums.phpfreaks.com/topic/249654-a-function-that-not-working-in-firefox/ Share on other sites More sharing options...
IreneLing Posted October 23, 2011 Author Share Posted October 23, 2011 Problem solved , the solution is add one more line: var bulksend = document.getElementById('bulksend'); Link to comment https://forums.phpfreaks.com/topic/249654-a-function-that-not-working-in-firefox/#findComment-1281584 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.