Skip to content

Instantly share code, notes, and snippets.

@ss81
Created January 23, 2013 18:26
Show Gist options
  • Save ss81/4611289 to your computer and use it in GitHub Desktop.
Save ss81/4611289 to your computer and use it in GitHub Desktop.
Get the list of all elements of a form (for https://github.com/cheezy/page-object).
$('#user-register input, #user-register select').each(function(){
console.log("text_field :" + $(this).attr('name') + ", :id => '" + $(this).attr('id') + "'");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment