When using mouseover a thumbnail of orientation, the image width and height did not fit exactly into "imax", a Div element.
I use the code in HTML Image:
onmouseover='chgImg(this.src)' onmouseout='resImg()'
and Javascript and CSS:
function chgImg(asd) {
oim = document.getElementById("im").src;
return document.getElementById("im").src=asd;
}
function resImg() {
return document.getElementById("im").src=oim;
}
#imax {
width:222px;
height:222px;
}
#im {
width:222px;
height:auto; /* <-- this will overlap which is a problem. */
}
oimto store the thumbnail's location, this could cause horrible effects (especially when an extension accidentally uses the same variable name). And what's the use of returning the new location? – Marcel Korpel Jun 19 '10 at 20:05imaxandim)? Did you look at Firebug's Layout pane (or a comparable thing in another browser tool)? Or do you have an example page, so we can try? – Marcel Korpel Jun 19 '10 at 20:24