|
Prev: FAQ Topic - How do I protect my javascript code? (2008-04-16)
Next: <div> blocks in same position?
From: santosh.pjb on 16 Apr 2008 00:32 I have a button on a page whose onclick funtion is posted below. I am basically trying to get all the spans in the page and list them in 2 columns. I get the list of spans using getElementsByTagName('span'). I dont want to move the spans themselves into my 2 column list(i.e I want them to stay where they are on the page), so I figured I needed to clone each span. Each time I make a clone, the clone somehow gets added to my original list of spans, so I end up in an infinite loop adding the first few elements again and again. How is this supposed to be done? Javascript n00b here...any advise is greatly appreciated... function getSpans() { var allspans=document.getElementsByTagName("span"); var infoDiv = null; var tmp; for(var element, i=0;element=allspans[i];i++) { tmp=element.cloneNode(true); alert(i +' '+tmp.innerHTML +' ' +allspans.length); <<<<< allspans keeps increasing if( i%2 == 0 ){ if( i!=0 ) list1.appendChild(infoDiv); infoDiv=document.createElement('div'); } infoDiv.appendChild(tmp); } } list1 is a div id Thanks
From: RobG on 16 Apr 2008 00:56 On Apr 16, 2:32 pm, santosh....(a)gmail.com wrote: > I have a button on a page whose onclick funtion is posted below. I am > basically trying to get all the spans in the page and list them in 2 > columns. I get the list of spans using getElementsByTagName('span'). > > I dont want to move the spans themselves into my 2 column list(i.e I > want them to stay where they are on the page), so I figured I needed > to clone each span. Each time I make a clone, the clone somehow gets > added to my original list of spans, so I end up in an infinite loop > adding the first few elements again and again. The collection returned by getElementsByTagName is live, that is, as you add more spans to the document, more are added to your collection. > How is this supposed to > be done? Convert the collection to an array, something like: function toArray(obj) { if (typeof obj.length != 'number') { return [obj]; } var result = []; for (var i=0, len=obj.length; i<len; i++) { result.push(obj[i]); } return result; } You can also work backward through the collection using its initial length if you are adding the spans lower in the DOM than the last in the initial collection, but that doesn't seem to be a good idea here (and can cause maintenance issues anyway). > Javascript n00b here...any advise is greatly > appreciated... > > function getSpans() > { > var allspans=document.getElementsByTagName("span"); > var infoDiv = null; > var tmp; > for(var element, i=0;element=allspans[i];i++) Why not the more common: var element; for (var i=0, len=allspans.length; i<len; i++) { element = allspans[i]; > { > tmp=element.cloneNode(true); > alert(i +' '+tmp.innerHTML +' ' +allspans.length); <<<<< > allspans keeps increasing > if( i%2 == 0 ){ You could just use i%2 > if( i!=0 ) list1.appendChild(infoDiv); Don't expect element IDs to be global variables, that is an IE invention. Use getElementById. > infoDiv=document.createElement('div'); > } > infoDiv.appendChild(tmp); > } > > } > > list1 is a div id function getSpans(id) { var target = document.getElementById(id); var allspans = toArray(document.getElementsByTagName('span')); var div = document.createElement('div'); for (var i=0, len=allspans.length; i<len; i++) { div.appendChild(allspans[i].cloneNode(true)); } target.appendChild(div); } Needs a bit of feature detection and testing, but shows the concept I hope. -- Rob
From: santosh.pjb on 16 Apr 2008 16:56 Thanks a lot! The toArray() was what I needed. Didn't know about live collections and lost a bit of hair trying to figure out what it was doing. About the 'for' loop style, it's part of some existing code and I hadn't actually given it any thought until you pointed out the conventional form. It works fine though. The i%2==0 is required as I am trying to create a div every 2 spans. Thanks once again for all the pointers...much appreciated.
From: Thomas 'PointedEars' Lahn on 16 Apr 2008 22:46 RobG wrote: > function toArray(obj) { > > if (typeof obj.length != 'number') { return [obj]; } > > var result = []; > for (var i=0, len=obj.length; i<len; i++) { > result.push(obj[i]); > } > return result; > } Given that Array.prototype.push() requires JScript 5.5, much more efficient and equally compatible is function toArray(obj) { return [].slice.call(obj); } See http://PointedEars.de/es-matrix PointedEars -- realism: HTML 4.01 Strict evangelism: XHTML 1.0 Strict madness: XHTML 1.1 as application/xhtml+xml -- Bjoern Hoehrmann
|
Pages: 1 Prev: FAQ Topic - How do I protect my javascript code? (2008-04-16) Next: <div> blocks in same position? |