Re: Re[jQuery] move appended element

2009-11-28 Thread coldwired
, 2009 at 4:39 AM, coldwired co...@coolwired.net wrote: Hi, Sorry, that was a slight typo on my part, it should be class selected. The problem I have with just appending using addClass is that when the class is removed it doesn't restore the element to it original state a such. What I mean

Re: Re[jQuery] move appended element

2009-11-28 Thread coldwired
you could use removeAttr('class'). But I wonder why this is a problem, in any case. Why is the class= giving you problems? On Sat, Nov 28, 2009 at 8:13 AM, coldwired co...@coolwired.net wrote: Hi, The tag is removed but a remendant of it remains, class=. is there anything I can do to make

Re: Re[jQuery] move appended element

2009-11-28 Thread coldwired
. brian ally-3 wrote: On Sat, Nov 28, 2009 at 2:11 PM, coldwired co...@coolwired.net wrote: The reason is because I need the exact clone of the highlighted tags before the selected class is supplied to it. Sorry, that doesn't answer my question. In what way is having an element

Re: Re[jQuery] move appended element

2009-11-27 Thread coldwired
a blank that it was before. I need to have the exact quote of the code so I can't have class=. Is there a solution to this? Thanks, Colin. coldwired wrote: Hi, I'm trying to append an div element around the element that triggers the on hover event, then remove the div on mouse out (blur). I

Re[jQuery] move appended element

2009-11-26 Thread coldwired
Hi, I'm trying to append an div element around the element that triggers the on hover event, then remove the div on mouse out (blur). I normally would use addClass / removeClass but this leaves class= when the class is removed and not the original state of the html. Here's my code, I can't work

[jQuery] Extract tag element and closing tag

2009-11-25 Thread coldwired
Hi, I've got the following piece of code that extracts the html code contained within a clicked element: $(p,h1,h2,h3,span,li, dd, dt,b,em,strong).click(function() { alert($(this).html()); }); I want to get the containing element from this too, it's open and close tag. For example: div

Re: [jQuery] Extract tag element and closing tag

2009-11-25 Thread coldwired
Magic, that's exactly what I needed. Cheers! Colin. coldwired wrote: Hi, I've got the following piece of code that extracts the html code contained within a clicked element: $(p,h1,h2,h3,span,li, dd, dt,b,em,strong).click(function() { alert($(this).html()); }); I want to get