Created
July 2, 2013 18:00
-
-
Save tjvantoll/5911571 to your computer and use it in GitHub Desktop.
Polyfill for Form Attribute on Submit Buttons
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* The form attribute can be used to associate a submit button with a form, even | |
* if the button is not a child of the <form> itself. | |
* | |
* This polyfill detects support with Modernizr and polyfills the functionality | |
* using jQuery. | |
*/ | |
(function() { | |
// Via Modernizr | |
function formAttributeSupport() { | |
var form = document.createElement( "form" ), | |
input = document.createElement( "input" ), | |
div = document.createElement( "div" ), | |
id = "formtest"+ ( new Date().getTime() ), | |
attr, | |
bool = false; | |
form.id = id; | |
// IE6/7 confuses the form idl attribute and the form content attribute | |
if ( document.createAttribute ) { | |
attr = document.createAttribute("form"); | |
attr.nodeValue = id; | |
input.setAttributeNode(attr); | |
div.appendChild(form); | |
div.appendChild(input); | |
document.documentElement.appendChild(div); | |
bool = form.elements.length === 1 && input.form == form; | |
div.parentNode.removeChild(div); | |
} | |
return bool; | |
}; | |
if ( !formAttributeSupport() ) { | |
$( document ) | |
.on( "click", "[type=submit][form]", function( event ) { | |
event.preventDefault(); | |
var formId = $( this ).attr( "form" ), | |
$form = $( "#" + formId ).submit(); | |
}) | |
.on( "keypress", "form input", function( event ) { | |
var $form; | |
if ( event.keyCode == 13 ) { | |
$form = $( this ).parents( "form" ); | |
if ( $form.find( "[type=submit]" ).length == 0 && | |
$( "[type=submit][form=" + $( this ).attr( "form" ) + "]" ).length > 0 ) { | |
$form.submit(); | |
} | |
} | |
}); | |
} | |
}()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment