is there another way to get an element's ID?
obj.getAttribute('id')
is there another way to get an element's ID?
obj.getAttribute('id')
Yes you can just use the .id
property of the dom element, for example:
myDOMElement.id
Or, something like this:
var inputs = document.getElementsByTagName("input");
for (var i = 0; i < inputs .length; i++) {
alert(inputs[i].id);
}
This would work too:
document.getElementsByTagName('p')[0].id
(If element where the 1st paragraph in your document)
Yes you can simply say:
function getID(oObject)
{
var id = oObject.id;
alert("This object's ID attribute is set to \"" + id + "\".");
}
Check this out: ID Attribute | id Property