Widget:RimCalc: Difference between revisions
Jump to navigation
Jump to search
Matt Pijoan (talk | contribs) No edit summary |
Matt Pijoan (talk | contribs) No edit summary |
||
Line 4: | Line 4: | ||
$("#input1").change(function(){ | $("#input1").change(function(){ | ||
alert("hi"); | alert("hi"); | ||
var temp = parseInt($("#output"). | var temp = parseInt($("#output").html()) + 1; | ||
$("#output").html(temp); | $("#output").html(temp); | ||
}); | }); |