1
Ich möchte den "RightClick" bei einem Bild einsetzen. Im Quelltext steht:
Im Head steht das entsprechende Javascript:
Das Ganze funktioniert auch, nur sagt der Validator dazu:
Attribute "onload" exists, but can not be used for this element.
Und weiter ...
use CSS instead of this attribute.
Meine Frage: Wie mache ich das? Was ist im Quelltext falsch??
elena
<a href="image2.html"><img src="../images/IMG_1117.JPG" alt="IMG_1117.JPG" title="IMG_1117.JPG" width="667" height="500" border="0" onload="DisableRightClick(this);" /></a>
Im Head steht das entsprechende Javascript:
<script type="text/javascript">
var lRCMessage = "Nicht erlaubt, sorry!!";
function DisableRightClick(AnImage) {
AnImage.oncontextmenu = function(e) {
alert(lRCMessage);
return false;
}
AnImage.ondragstart = function () { return false; }
}
function PageLoaded() {
imagepreload = new Image;
imagepreload.src = "../images/IMG_1118.JPG";
}
window.onload=PageLoaded;
</script>
Das Ganze funktioniert auch, nur sagt der Validator dazu:
Attribute "onload" exists, but can not be used for this element.
Und weiter ...
use CSS instead of this attribute.
Meine Frage: Wie mache ich das? Was ist im Quelltext falsch??
elena