The html:
<div id="slide">
<div>This is one</div>
<div>This is two</div>
<div>This is three</div>
</div>
JavaScript:
var slider = {
div: document.getElementById("slide"),
divs: this.div.getElementsByTagName("div")
};
alert(slider.divs.length);
jsfiddle: http://jsfiddle.net/CAzN8/
When I run this, Chrome said this.div is undefined. What's wrong here?
[UPDATE] I found that if I change the code to:
var tmp = document.getElementById("slide");
var slider = {
div: tmp,
divs: tmp.getElementsByTagName("div")
};
It works. But why can't the first case work?
thisinside JavaScript object literals" – tobyodavies May 5 '11 at 5:21