The w3cschools site has an example of the getelementbyid () function. It turns out that in each browser this example has a different return and I could not find a response from that. Anyone have any idea why this happens? the example is this:
<!DOCTYPE html>
<html>
<body>
<img id="myImg" alt="Flower" src="klematis.jpg" width="150" height="113">
<p>Click the button to display each attribute's name and value of the image above.</p>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.getElementById("myImg");
var txt = "";
var i;
for (i = 0; i < x.attributes.length; i++) {
txt = txt + x.attributes[i].name + " = " + x.attributes[i].value + "<br>";
}
document.getElementById("demo").innerHTML = txt;
}
</script>
</body>
</html>
The responses of each browser are as follows:
- Firefox 30.0:
width = 150
height = 113
src = klematis.jpg
alt = Flower
id = myImg
- Chrome 36.0.1985.125:
id = myImg
alt = Flower
src = klematis.jpg
width = 150
height = 113
- IE 11.0.9600.17207
width = 150
height = 113
id = myImg
alt = Flower
src = klematis.jpg
For example, if I want to have access to the id attribute in ff the index will be 4, in chrome it will be 0 and in IE it will be 2.