Skip to content

Instantly share code, notes, and snippets.

@pwdonald
Last active August 29, 2015 13:56
Show Gist options
  • Save pwdonald/8832084 to your computer and use it in GitHub Desktop.
Save pwdonald/8832084 to your computer and use it in GitHub Desktop.
jquery_child_input_hidereset
function hideAndResetCollection(containerFormElement) {
var container = "";
if (containerFormElement instanceof jQuery) {
container = $(containerFormElement.selector + ' :input');
} else {
container = $(containerFormElement);
}
$.each(container, function (index, value) {
hideAndReset($(value));
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment