Where you have this (and similar):
HTML Code:
<A href=# onClick="changeText('mytest',1);">
It should be like:
HTML Code:
<a href="#" onclick="changeText('mytest',1);return false;">
Even better would be to skip the link altogether and to assign style and the event to the image something like so:
HTML Code:
<img style="cursor:pointer;border:3px solid cyan;" onclick="changeText('mytest',1);this.style.borderColor='purple';" src="images/testimonials/avrum_small.jpg" name="avrum" width="90" height="90" alt="">
Bookmarks