HTML interesse |
|
Ik heb een link naar een foto... deze foto moet in een popup venster openen die resized naar de maat van de foto:
Link naar script/foto:
<a href='javascript:PopupPic(".$image.")'>
<a href='javascript:PopupPic(".$image.")'>
Script:
function PopupPic(image) {
window.open("popup.php?image=' + image + '","","width=400,height=400,resizable,scrollbars=no,status=0");
function PopupPic(image) { window.open("popup.php?image=' + image + '","","width=400,height=400,resizable,scrollbars=no,status=0");
Popup.php:
function fitPic() {
if (window.innerWidth){
iWidth = window.innerWidth;
iHeight = window.innerHeight;
}else{
iWidth = document.body.clientWidth;
iHeight =document.body.clientHeight;
}
iWidth = document.images[0].width - iWidth;
iHeight = document.images[0].height - iHeight;
window.resizeBy(iWidth, iHeight);
};
function fitPic() { if (window.innerWidth){ iWidth = window.innerWidth; iHeight = window.innerHeight; }else{ iWidth = document.body.clientWidth; iHeight =document.body.clientHeight; } iWidth = document.images[0].width - iWidth; iHeight = document.images[0].height - iHeight; window.resizeBy(iWidth, iHeight); };
Als plaatje bijvoorbeeld footer.jpg is krijg ik de error: "footer" is undifined....
|