Skip to content

Instantly share code, notes, and snippets.

@andrerocker
Created November 7, 2010 17:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrerocker/666279 to your computer and use it in GitHub Desktop.
Save andrerocker/666279 to your computer and use it in GitHub Desktop.
Trecho de implementação - Estado do Formulario
/**
* Retorna estado do Formulario
*/
HTMLFormElement.prototype.isLocked = function()
{
var store = buildStoreForm(this, false);
if(store.length>0)
return store['locked'];
return false;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment