Skip to content

Instantly share code, notes, and snippets.

@hexode
Created November 17, 2013 20:27
Show Gist options
  • Save hexode/7517865 to your computer and use it in GitHub Desktop.
Save hexode/7517865 to your computer and use it in GitHub Desktop.
Pretty form scanner
[].forEach.call(document.querySelectorAll('form'), function (input) {
var table = [];
console.group('HTMLForm "' + input.name + '": ' + input.action);
console.log('Element: ', input, '\nName: ' +
input.name + '\nMethod: ' + input.method.toUpperCase() +
'\nAction: ' + input.action || 'null');
['input', 'textarea', 'select'].forEach(function (control) {
[].forEach.call(input.querySelectorAll(control), function (node) {
table.push({
'Element': node,
'Type': node.type,
'Name': node.name,
'Value': node.value,
'Pretty Value': (isNaN(node.value) || node.value === '' ?
node.value : parseFloat(node.value))
});
});
});
console.table(table);
console.groupEnd();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment