soma sundar 5.Jun.12 08:56 AM a Web browser Domino Web AccessAll ReleasesAll Platforms
HI All
I am comparing two number field using javascript on web , but its not comparing correcly
for example region from value is 7 and region to value is 28 then its comparing wrongly
am using below code any idea please
if ((thisForm.RegionFr.value!="") && (thisForm.RegionTo.value !="")){
if (( thisForm.RegionFr.value ) > (thisForm.RegionTo.value)){
alert("Region To Code Should be greater than Region From Code");
return false;
}