Valid Javascript to get working in xslt
Hi,
I found this code that allows anly numeric char, the problem i have is that the xslt file does not like the script:
<SCRIPT TYPE='text/javascript'>
function IsNumeric(sText)
{
var ValidChars = "0123456789.";
var IsNumber=true;
var Char;
for (i = 0; i < sText.length && IsNumber == true; i++)
{
Char = sText.charAt(i);
if (ValidChars.indexOf(Char) == -1)
{
IsNumber = false;
}
}
return IsNumber;
}
</SCRIPT>
Please Assist!
|