how to get button text in javascript
To get button text inside its tag name
how to get button text in javascript
To get button text inside its tag name
access text inside a button from js
document.getElementById("myButton2").innnerHTML=
"New Button Text using innerHTML";
access text inside a button from js
document.getElementById("myButton2").childNodes[0].nodeValue=
"New Button Text using childNodes";
html get button text
ar all = document.getElementsByTagName('*');
for (var i=0, max=all.length; i < max; i++)
{
var elem = all[i];
if(elem.getAttribute("id") == 'ext-gen26'){
if(elem.attributes != null){
for (var x = 0; x < elem.attributes.length; x++) {
var attrib = elem.attributes[x];
alert(attrib.name + " = " + attrib.value);
}
}
}
};
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