Chrome seems to be ignoring forms embedded in another form.
See this script ( http://jsfiddle.net/jeljeljel/NbUeQ/1/ )
HTML
<form>
<div id="dialog">
<form id="theForm">
<label>abc</label>
</form>
</div>
</form>
Js
alert($('#theForm').length);
Note 'theForm' not found.
The only solution that has no inline forms?
source
share