Hi,
I have some thumbnails and when clicked they will load a larger image on the
same page based on the thumbnails "href" value.  Heres the code I'm using to
do this.

        $('a').click(function(){
                var selected = $(this).attr("href");
                $('.full_img').attr("src", selected);
                return false;
        });

What I want to know is, is there a way to display some text saying
"Loading..." until new image is loaded.  Here's the site so far.

Any help would be awesome.
b0bd0gz
-- 
View this message in context: 
http://www.nabble.com/Image-loaded-tf4248146s15494.html#a12089651
Sent from the JQuery mailing list archive at Nabble.com.

Reply via email to