form.remove();
});
-test( "submit event bubbles on copied forms (#11649)", function(){
+test( "submit event bubbles on copied forms (#11649)", function() {
expect( 3 );
var $formByClone, $formByHTML,
// Copy the form via .clone() and .html()
$formByClone = $testForm.clone( true, true ).removeAttr("id");
- $formByHTML = jQuery( $fixture.html() ).filter("#testForm").removeAttr("id");
+ $formByHTML = jQuery( jQuery.parseHTML($fixture.html()) ).filter("#testForm").removeAttr("id");
$wrapperDiv.append( $formByClone, $formByHTML );
// Check submit bubbling on the copied forms
// Copy the form via .clone() and .html()
$formByClone = $form.clone( true, true ).removeAttr("id");
- $formByHTML = jQuery( $fixture.html() ).filter("#form").removeAttr("id");
+ $formByHTML = jQuery( jQuery.parseHTML($fixture.html()) ).filter("#form").removeAttr("id");
$wrapperDiv.append( $formByClone, $formByHTML );
// Check change bubbling on the copied forms