[jQuery] Re: Question about jQuery effects and append method

2007-06-05 Thread Karl Swedberg
:-) right. that's because I was just dropping in radzio's code. I didn't mean for it to work perfectly on my server, just to give him something he could copy and paste. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Jun 4, 2007, at 11:37 PM, John Far

[jQuery] Re: Question about jQuery effects and append method

2007-06-05 Thread radzio
Thanks a lot jqModal is what I was trying to do. I don't how I didn't see in on Google. Thanks again Karl. --radzio On 5 Cze, 05:21, Karl Swedberg <[EMAIL PROTECTED]> wrote: > If you just want it to appear when you click a link, then you > probably don't want to append it to the body on document

[jQuery] Re: Question about jQuery effects and append method

2007-06-04 Thread John Farrar
In IE7 it had broken graphic links. Karl Swedberg wrote: > If you just want it to appear when you click a link, then you probably > don't want to append it to the body on document.ready. Put that in a > click handler instead. Anyway, I threw together a page for you: > > http://test.learningjquer

[jQuery] Re: Question about jQuery effects and append method

2007-06-04 Thread Karl Swedberg
If you just want it to appear when you click a link, then you probably don't want to append it to the body on document.ready. Put that in a click handler instead. Anyway, I threw together a page for you: http://test.learningjquery.com/create-window.html Is that the kind of thing you're loo

[jQuery] Re: Question about jQuery effects and append method

2007-06-04 Thread Erik Beeson
What about it isn't working? This simple example works fine for me: $(document).ready(function() { $('body').append('This is the test.'); $('#test').bind('click', function() { alert('This is from a test event'); }); }); --Erik On 6/4/07, radzio <[EMAIL PROTECTED]> wrote: Unfortunately it d

[jQuery] Re: Question about jQuery effects and append method

2007-06-04 Thread radzio
Unfortunately it doesn't work too. However it's a bit better but still I have this problem :/ I simply want to generate js window by clicking link something like this -> http://prototype-window.xilinus.com/ but a bit more simply ;-). But I couldn't jump over problem I described earlier ;/. I

[jQuery] Re: Question about jQuery effects and append method

2007-06-04 Thread Karl Swedberg
A good place to start here would be to wrap your DOM elements in $(), so it would look like this: var htmlW = $('class="windowTop">Window examplediv>src="images/window_max.jpg" class="windowMax" />class="windowBottom"> div>bla 1bla 2bla 3div>'); then call your createWindow function within do