javascript get element by class
var elementsArray = document.getElementsByClassName("someclassname");
javascript get element by class
var elementsArray = document.getElementsByClassName("someclassname");
javascript get attribute
//HTML
//<div id="elem" data-id="4hJ3s"></div>
var elem = document.getElementById("elem");
elem.getAttribute("data-id"); // "4hJ3s"
check the doc name in javascript
var path = window.location.pathname;
var page = path.split("/").pop();
console.log( page );
how to get element by attribute value in javascript
document.querySelectorAll('[data-foo="value"]');
javascript element read attribute
document.getElementById('id1').getAttribute('attribute');
js get element by attribute
//find first element with "someAttr" attribute
document.querySelector('[someAttr]')
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us