This works GREAT!!!!!! THANK YOU SO MUCH!!! the only thing i have noticed is that when you hover over one image and go to the next one and the next one it flashes the text however many times you hovered over the images.
Any ideas on how to fix. Does it have anything to do with the fadeout? On May 7, 1:52 pm, Scott Sauyet <[EMAIL PROTECTED]> wrote: > Aaron wrote: > > i have tried the code like this and it does not appear to work. Can > > you see anything i am doing wrong? > > > <SCRIPT src="AboutJones_files/jquery.js" type=text/javascript></ > > SCRIPT> > > > <SCRIPT type=text/javascript> > > > jQuery.noConflict(); > > var newTitle; > > > jQuery("div.LinkContents").hide(); > > // [ ... ] > > This is in the HEAD of your HTML document, and will run as it's being > scanned, before the content of the body is loaded and parsed into DOM > objects. If you want this to run after the content is loaded properly, > you can either place this script at the bottom of your HTML page, or, > preferably, wrap it in the JQuery $(document).ready() function like this: > > $(document).ready(function() { > var newTitle; > jQuery("div.LinkContents").hide(); > // [ ... ] > }); > > Cheers, > > -- Scott