if(measure=="feat")
{
result=(wi*he);
if(((wi*he))>0)
{
result=result;
}
// alert(result);
}
if(result=="0")
{
result ="1";
}
This is my code. i want the result as : if the result is between 1-50, it should display 1, similarly 51-100 : 2, 101- 150 : 3, 151-200 : 4....
what code should i write in the result part? anyone help me out. its urgent.