D
David j
<script>
function test(str) {
alert(str)
}
</script>
The JavaScript function listed above takes a string as a parameter.
If the string is <=2055 characters it works as expected. Anything
In IE 6 is doesn't work, mozilla 1.6 it works fine.
Any ideas why this isn't working in IE? Is there a limit to the
lenght of string in IE?
function test(str) {
alert(str)
}
</script>
The JavaScript function listed above takes a string as a parameter.
If the string is <=2055 characters it works as expected. Anything
displayed.=2056 characters and it doesn't work. The alert box is never
In IE 6 is doesn't work, mozilla 1.6 it works fine.
Any ideas why this isn't working in IE? Is there a limit to the
lenght of string in IE?