[jQuery] Re: Image rollover using jQuery

2008-12-02 Thread Ray M
Thank you. This is exactly what I want! On Dec 1, 12:46 pm, howa [EMAIL PROTECTED] wrote: http://code.google.com/p/jquery-swapimage/ Ray

[jQuery] Re: Image rollover using jQuery

2008-12-01 Thread Andy Matthews
Sent: Sunday, November 30, 2008 10:46 PM To: jQuery (English) Subject: [jQuery] Re: Image rollover using jQuery Maybe this: http://code.google.com/p/jquery-swapimage/ On Nov 30, 5:14 pm, Ray M [EMAIL PROTECTED] wrote: Hello, Are there any existing jQuery plugin which can provide similar

[jQuery] Re: Image rollover using jQuery

2008-11-30 Thread Karl Swedberg
On Nov 30, 2008, at 4:14 AM, Ray M wrote: Hello, Are there any existing jQuery plugin which can provide similar image rollover functions such as the one provided by Dreamweaver? Thanks. Ray Hi Ray, If you're referring to the dreaded MM_swapImage(), I think most people these days just

[jQuery] Re: Image rollover using jQuery

2008-11-30 Thread howa
Maybe this: http://code.google.com/p/jquery-swapimage/ On Nov 30, 5:14 pm, Ray M [EMAIL PROTECTED] wrote: Hello, Are there any existing jQuery plugin which can provide similar image rollover functions such as the one provided by Dreamweaver? Thanks. Ray

[jQuery] Re: Image rollover using jQuery

2008-11-30 Thread seasoup
plugin? How about the native .hover? $('img').hover(function() { $(this).attr('src',path + '' + $('this).attr('id') + '_over.gif'; }, function() { $(this).attr('src',path + '' + $('this).attr('id') + '_off.gif'; }); That will make every image on the page a rollover, changing the src of the