Trying to figure out how to write a jquery formula that will sum all input fields that begin with \"pull\" on keyup... I\'m trying the code below, but nothing happens... No
Try:
$("input[name^='pull']").bind("keyup", calcPullTotal); calcPullTotal();
You were passing the string "calcPullTotal" as the second argument to bind, which expects a function.
function