Created
February 14, 2018 13:40
-
-
Save xstable/001308039fda6d77c11b6cdda6ccf6c5 to your computer and use it in GitHub Desktop.
FormControls.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// formcontrols.js | |
// https://github.com/bgrins/devtools-snippets | |
// Print out forms and their controls | |
(function() { | |
var forms = document.querySelectorAll("form"); | |
for (var i = 0, len = forms.length; i < len; i++) { | |
var tab = [ ]; | |
console.group("HTMLForm \"" + forms[i].name + "\": " + forms[i].action); | |
console.log("Element:", forms[i], "\nName: "+forms[i].name+"\nMethod: "+forms[i].method.toUpperCase()+"\nAction: "+forms[i].action || "null"); | |
["input", "textarea", "select"].forEach(function (control) { | |
[].forEach.call(forms[i].querySelectorAll(control), function (node) { | |
tab.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(tab); | |
console.groupEnd(); | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment