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
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
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
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
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
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
Sure, do something like this:
$('#Explanation').css({
position : 'absolute',
top : '720px',
right : '0px',
width : '10px',
margin : '40px 0 0 0'
});
VP
7 matches
Mail list logo