Topic: Why $('form')[0].submit() ?
The code in example on http://www.plupload.com/example_queuewidget.php uses $('form')[0].submit() to submit the form. I thought that $("#myFormId").submit() would work too, but it caused the browser to lock up. I don't get why. According to http://www.w3schools.com/jquery/event_submit.asp, my expectation was correct, but both IE and Firefox proved me wrong. Why?