[jQuery] Re: is this possible with jquery

2009-09-11 Thread Mr Speaker
That website you linked to doesn't use Ajax, so it loads all the wines in in one go. If there wasn't many items then this would be the best way to go. Otherwise, you'll have to take the db hit: which wouldn't be too bad if you've got it caching stuff properly... But if you load them all at once i

[jQuery] Re: is this possible with jquery?

2008-04-01 Thread cmt
Thanks! On Apr 1, 3:26 am, "Alexandre Plennevaux" <[EMAIL PROTECTED]> wrote: > definitely yes, using the livequery plugin > :http://brandonaaron.net/docs/livequery/ > > .. and much much more ! > > > > On Mon, Mar 31, 2008 at 8:54 PM, cmt <[EMAIL PROTECTED]> wrote: > > > Hi, > > > I have a t

[jQuery] Re: is this possible with jquery?

2008-04-01 Thread Karl Swedberg
LiveQuery is an awesome plugin, and it will certainly do the trick. Ariel Flesler's Listen plugin is also a great one for this type of situation. If you'd like to learn more about why this sort of thing happens and how you can remedy it on your own using "Event Delegation," take a look

[jQuery] Re: is this possible with jquery?

2008-04-01 Thread Alexandre Plennevaux
definitely yes, using the livequery plugin : http://brandonaaron.net/docs/livequery/ .. and much much more ! On Mon, Mar 31, 2008 at 8:54 PM, cmt <[EMAIL PROTECTED]> wrote: > > Hi, > > > I have a tag on my page that I am using as a dynamic content > holder. I have a javascript that loads H

[jQuery] Re: Is this possible with jQuery?

2008-02-16 Thread [EMAIL PROTECTED]
Johny, there are some things you can try - see this thread for ideas? http://groups.google.com/group/jquery-en/browse_frm/thread/5ec2f96cc15f03d4# On Feb 16, 7:47 am, Johny <[EMAIL PROTECTED]> wrote: > Hi, > I have a website with some images.The size of these pictures are ok > for the most of use

[jQuery] Re: Is this possible with jQuery?

2007-10-07 Thread Davey Waterson
If i understand your requirement. the trick is to make the style a class style and simply add it directly to the div. i.e change div#Explanation to .Explain (a style class called 'Explain') to target the div and add the class use : $('#Explanation').addClass('Explain'); hope this helps dave

[jQuery] Re: Is this possible with jQuery?

2007-10-02 Thread Loren Pipes
Sure, do something like this: $('#Explanation').css({ position : 'absolute', top : '720px', right : '0px', width : '10px', margin : '40px 0 0 0' }); VP