Also ich habe auf einen Bild ein Onclick Event. In diesen OnClick Event möchte ich eine Ebene ansprechen und das darin enthaltende Bild ändern. Noch was ich habe das früher mal mit einem OnClick Event ausprobiert was ein PopUp Fenster öffnen sollte doch das hat damals nicht geklappt. Das Bild was ich da habe wird über einen Code jedes mal neu geladen hier der Code:
-->
function reloadpic()
{
now = new Date();
document.images["CamPic"].src = "http://192.168.111.230/record/current.jpg?foo=" + now.getTime();
setTimeout("reloadpic();", 500);
}
onload = reloadpic;
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
<--
-->
function reloadpic()
{
now = new Date();
document.images["CamPic"].src = "http://192.168.111.230/record/current.jpg?foo=" + now.getTime();
setTimeout("reloadpic();", 500);
}
onload = reloadpic;
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
<--