views:

97

answers:

1

is there any jquery or any script, that when u click on one link, few images on a page change?

A: 

Something like this? Just give each image a class 'changingimage'.

$('img.changingimage').hide();
$('a#clickme').click(function(){
    $('img.changingimage').fadeIn();
});
Frank Malina