I'm trying to select all elements that have a class, get their ID's (if they have one), and append individual spans to the end of my document based on that information. ...
Could someone tell me the difference between those two. The first one is working on FF and not in IE (6) and second one is working in IE (6) and not ...
ignoring the I tested but it had two Problems1- It Removes the Span so the solution us Make A CLONE from it2- it Result is the Text in the Span which we don't need that so wehave to put and End(). to return to the code in below works :I change the Code to this : var newP=$("p").clone(); newP.find("span").remove().end().text();does anyone ...