how to get element by attribute value in javascript
document.querySelectorAll('[data-foo="value"]');
how to get element by attribute value in javascript
document.querySelectorAll('[data-foo="value"]');
javascript element read attribute
document.getElementById('id1').getAttribute('attribute');
js getattribute
const link = document.querySelector('a');
console.log(link.getAttribute('href'));
javascript get attribute
<div id="id_of_the_element" data-attribute_name="foo"></div>
var elem = document.getElementById("id_of_the_element");
var attribute_value = elem.getAttribute("data-attribute_name");
//OR with jquery...
var attribute_value = $('#id_of_the_element').attr('data-attribute_name');
//OR...
var attribute_value = $('#id_of_the_element').data('attribute_name');
getattribute javascript
let attribute = element.getAttribute(attributeName);
getattribute javascript
<!-- example div in an html DOC -->
<div id="div1">Hi Champ!</div>
// in a console
const div1 = document.getElementById('div1');
//=> <div id="div1">Hi Champ!</div>
const exampleAttr= div1.getAttribute('id');
//=> "div1"
const align = div1.getAttribute('align')
//=> null
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