calculations
function temp(form)
{
var m = parseFloat(form.mass.value, 10);
var v = parseFloat(form.volume.value, 1);
var d = 0;
d=m/v;
form.density.value=d;
}
Try to say that 5 times really fast. Go ahead, try it. Well, at least it is not as difficult as Fox in Socks - man that book is a killer.
This WAW is basically a means to embed Wolfram Alpha queries into a webpage. Pretty cool idea, but I am not sure how well it does the job. In fact, I have tried to embed calculations in my posts before. So, how about I just give a quick review of some different ways to do this. For all these methods, I…