[jQuery] Sustain a hover over two elements

2009-03-16 Thread Ed Lerner
I have an that, once hovered over, animates and fades in the of a larger version of the picture, along with text and a hyperlink. When mousing out, the animates and fades away. This works fine, only my hover function only pertains to the itself. As soon as either a) the appears over the , or

[jQuery] Re: Change direction of 'animate' function

2009-03-09 Thread Ed Lerner
Apologies. I assumed the function would continue its down/right movement and push the window. It handled itself and moved down/left as needed. Sorry about the deadthread On Mar 9, 4:04 pm, Ed Lerner wrote: > I need to use the animate function (slide, show, etc won't do) on a &

[jQuery] Change direction of 'animate' function

2009-03-09 Thread Ed Lerner
I need to use the animate function (slide, show, etc won't do) on a project. Typically, 'animate' expands down and to the right. How can I alter this? For example, I am putting thumbnails of images on both sides of a site. When hovered, a larger version animates into view. Because of the down/righ

[jQuery] Re: Altering external links

2009-03-09 Thread Ed Lerner
Exactly what I was looking for. Thanks. On Mar 9, 10:16 am, ToTalTim wrote: > http://www.front-end.nu/?p=6 > > On 9 mrt, 15:48, Ed Lerner wrote: > > > How would I modify the following to only target anchors with an href > > beginning with "http"

[jQuery] Altering external links

2009-03-09 Thread Ed Lerner
How would I modify the following to only target anchors with an href beginning with "http"? $('a').each(function(index) { $(this).attr({ 'target': 'blank' }); });

[jQuery] Re: jQuery validation question: validating multiple email inputs

2009-02-13 Thread Ed Lerner
I'm new to jQuery as well. In other languages, you would take the string that holds all of the emails and do a 'split' on commas. This should give you an array where each element is an individual email. >From there, just validate each element. How to do this in jQuery, someone more experienced tha