Skip to content

Instantly share code, notes, and snippets.

@dvidsilva
Created June 29, 2013 19:47
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 dvidsilva/5892409 to your computer and use it in GitHub Desktop.
Save dvidsilva/5892409 to your computer and use it in GitHub Desktop.
var total = 0;
var suma = 0;
$.each($("input"), function (index, value) {
total = total + 1 ;
if( $(value).val() != '' ){
suma = suma + 1 ;
}
});
@rsocarras
Copy link

Probando !!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment