We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be37b6a commit 02b10a6Copy full SHA for 02b10a6
demo/dynamic-totals.html
@@ -44,7 +44,7 @@
44
$("#add").click(addRow);
45
46
// check keyup on quantity inputs to update totals field
47
- $("#orderform").delegate("keyup", "input.quantity", function(event) {
+ $("#orderform").validateDelegate("input.quantity", "keyup", function(event) {
48
var totals = 0;
49
$("#orderitems input.quantity").each(function() {
50
totals += +this.value;
0 commit comments