Hello,
I have a test page: http://www.magicare.ca/test_pages/team/test_A.html
What I want to do is:
The bigger picture changes when cursor moves over small pictures. I used a javascript to do this. It works perfectly in browsers like Safari, Chrome. However in IE and Firefox, the small pictures appear not align with each other. Does anyone know what the problem is and how to fix it?
The script:
<script type=“text/javascript”>
function roll(img_name1, img_src1, img_name2, img_src2)
{
document[img_name1].src = img_src1;
document[img_name2].src = img_src2;
}
</script>
Thanks.
kklui.