Jump to content

a function that not working in firefox


IreneLing

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.