Check out this jsfiddle. There is a <div> with a click binding. This div has a child form. Clicking the submit button on the child form fires the parent click event, and does not submit the form.

How can I restore the ability to submit this form? In my real-life application, I also have a file field in the form, which does nothing when it is clicked. I mention that just to avoid any answers like:

$('#myForm input[type=submit]').click(function(){
    $('#myForm').submit();
});

Thanks!

link|improve this question

74% accept rate
So you are not looking for something simple like this: jsfiddle.net/unklefolk/ssZQg/1 as a workaround??? – Mark Robinson Oct 19 '11 at 12:44
feedback

1 Answer

up vote 3 down vote accepted

If you return true from your doSomething method, then it will allow the default action to proceed.

link|improve this answer
Thanks, I see that's in the documentation here: knockoutjs.com/documentation/…. I read that page twice through, must have just stared right through it! – Will Oct 19 '11 at 14:57
Thanks. Found out that KO was the culprit after commenting out large swathes of code :-| – Noel Abrahams Nov 23 '11 at 17:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.