Или же даже так:
<div id="images">
<img id="one" src="img1.jpg" width="100" height="100" />
<img id="two"src="img2.jpg"/>
<img id="three" src="img3b.jpg" />
</div>
<table width="200" border="1">
<tr>
<td id="c_one">id=one</td>
<td>***</td>
</tr>
<tr>
<td id="c_two">id=two;</td>
<td>***</td>
</tr>
<tr>
<td id="c_three">id=three</td>
<td>***</td>
</tr>
</table>
<script type="text/javascript">
$(function() {
$('#images img').click(function() {
$('#c_' + this.id).html('').append(this);
});
});
</script>
|