I have a piece of JQuery script that changes the src of an image on click:
var imgsrc;
$('#thumbs img').click(function(){
imgsrc = $(this).attr('src');
$('#mainphoto img').attr('src', imgsrc);
I am wondering if theres a way to add .fadeIn() to this at all?
I have tried:
$('#mainphoto img').fadeIn().attr('src', imgsrc);
But this does not work.
Can anyone suggest a way to adjust the symantecs to accomodate this?

.attr()is deprecated. use.prop()– Abhilash Nov 6 '12 at 7:22.attr()is NOT deprecated. Checked api.jquery.com/category/deprecated to make sure. I stand corrected – Abhilash Nov 6 '12 at 7:34