Skip to content

Instantly share code, notes, and snippets.

@tjvantoll
Created July 2, 2013 18:00
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save tjvantoll/5911571 to your computer and use it in GitHub Desktop.
Save tjvantoll/5911571 to your computer and use it in GitHub Desktop.
Polyfill for Form Attribute on Submit Buttons
/**
* 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