[jQuery] Re: not sure why prepend with effects not working for me

2007-07-23 Thread skatta
actually ... empty seem sto do what i want. plus, the app i've built basically uses no page refreshes at all (or very little) ... all content is ajax'd in and out. it's a pay service so i can demand things like JS + modern browsers required. it's allowed me to beat up my sql server less, so i'm p

[jQuery] Re: not sure why prepend with effects not working for me

2007-07-23 Thread Scott Sauyet
skatta wrote: scott, i think that was it ... i also had some issues with my order of effect events. only problem is now ... liek prepend is great, if i want to remove the content i can't ... remove() seems to give it a display:none attribute ... i want to dump it from the DOM 100% "remove" rem

[jQuery] Re: not sure why prepend with effects not working for me

2007-07-23 Thread skatta
er ... scratch display:none ... it doesn't remove it from the jquery object. On Jul 23, 1:03 pm, Scott Sauyet <[EMAIL PROTECTED]> wrote: > skatta wrote: > > i simply want to do this ... > > > $("#mydiv").prepend("Hello There").show("slow"); > > > it shows up, but without the 'show' effect > > You

[jQuery] Re: not sure why prepend with effects not working for me

2007-07-23 Thread skatta
scott, i think that was it ... i also had some issues with my order of effect events. only problem is now ... liek prepend is great, if i want to remove the content i can't ... remove() seems to give it a display:none attribute ... i want to dump it from the DOM 100% On Jul 23, 1:03 pm, Scott Sau

[jQuery] Re: not sure why prepend with effects not working for me

2007-07-23 Thread Scott Sauyet
skatta wrote: i simply want to do this ... $("#mydiv").prepend("Hello There").show("slow"); it shows up, but without the 'show' effect Your "show" is applied to #mydiv, which is presumably already visible, and so it has no effect. You might try something like (untested): $("Hello There

[jQuery] Re: not sure why prepend with effects not working for me

2007-07-23 Thread Mike Alsup
Is #myDiv hidden, or is it already visible when "show" is called? Can you show us more of the code? Mike On 7/23/07, skatta <[EMAIL PROTECTED]> wrote: i simply want to do this ... $("#mydiv").prepend("Hello There").show("slow"); it shows up, but without the 'show' effect