16 Feb
2011
16 Feb
'11
11:48 a.m.
On 02/16/2011 12:37 PM, Jerome Velociter wrote:
+ this.indexDisplay.firstChild.nodeValue = (index + 1) + ' / ' + this.images.length;
Same for firstChild.nodeValue, I would prefer .down().update()
Not quite, indexDisplay.firstChild is a text node, so down() won't select it. this.indexDisplay.update((index + 1) + ' / ' + this.images.length); -- Sergiu Dumitriu http://purl.org/net/sergiu/