I have searched the forum for one particular issue, yet all the solutions I found do not work for my problem.
I have an image on the left hand side. On the right hand side, I have different words. So, When I click on a particular name, I want the picture to change to whatever picture I have in my image folder. Basically, I want the source of the image to change. Here is the code for my index:
<div id="picture_here">
<img src="images/mtkili.png" id="picture"/>
</div>
<div id="about">
<div id="mtl">Mtl</div>
</div>
<div id="about_2">
<div id="contact">SF</div>
</div>
and here are two jqueries formulas I tried:
$('#mtl').click(function(){
$('#picture').attr()({
'src':'images/short.png'
})
})
and:
$('#mtl').click(function(){
$('#picture').attr('src', 'images/short.png');
});
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…