mirror of
https://github.com/luc-github/ESP3D-WEBUI.git
synced 2026-03-08 00:46:50 +01:00
7 lines
222 B
JavaScript
7 lines
222 B
JavaScript
function FindByAttributeValue(attribute, value) {
|
|
var All = document.getElementsByTagName('*');
|
|
for (var i = 0; i < All.length; i++) {
|
|
if (All[i].getAttribute(attribute) == value) { return All[i]; }
|
|
}
|
|
}
|