Possible Duplicate:
Comparing NaN values for equality in Javascript
Can anyone tell me why this is not working?
if(inbperr == NaN){
document.getElementById('inbclo').value = "N/A";
}
else{
document.getElementById('inbclo').value = "%" + inbperr;
}
Instead of returning a percentage value or "N/A" like I want it to it's returning "%NaN".