I am trying to make a percentage by deviding a 100 through a value. Works fine in FF but IE7 choocks on it, throwing an error.
this works:
part = 100/6;
alert(part);
this does not: (in IE7)
temp = 6;
percent = 100/temp;
alert(percent);
What blatently silly thing am I overlooking here?