[jQuery] Re: Plugin Best practices?

2009-05-24 Thread Cerebral
http://plugins.jquery.com/project/lazyload This plugin lets you write your code without having to be worried about plugins availability: it will load them when they're needed.

[jQuery] Re: How to get parts of URL after domain

2009-01-05 Thread Cerebral
If you prefer to handle it with jQuery, you could also use the URL parser plugin: http://projects.allmarkedup.com/jquery_url_parser/ . Though, Michael solution is quite elegant.

[jQuery] Re: Calling/forcing hover()

2008-09-05 Thread Cerebral
<[EMAIL PROTECTED]> wrote: > Try $(elem).trigger('hover'); or $(elem).trigger('mouseenter'); and > see if that works out for you. > Nathan Hammond > > On Sep 4, 7:50 pm, Cerebral <[EMAIL PROTECTED]> wrote: > > > Hi, > > is there a w

[jQuery] Calling/forcing hover()

2008-09-04 Thread Cerebral
Hi, is there a way to directly call the hover() or mouseover event ? I know I could use a separate function as the parameter but what I need is to trigger the hover event on my selected element, much like I can force the click event by writing something like $(elm).click(); in that case the click