Rufe ueber window.onload eine Funktion auf, in der du dir eine Referenz auf das gewuenschte HTML-Element besorgst - dann kannst du mit dem machen, was du willst.
Vielen Dank!! Jetzt habe ich es. Für das Archiv noch mein Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Test</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta http-equiv="Content-Style-Type" content="text/css">
<script type="text/javascript">
~~~~~~javascript
window.onload = doOnload;
function doOnload()
{
document.getElementById('test').onclick = starte;
}
function starte()
{
window.alert("Hallo");
}
~~~~~~html
</script>
</head>
<body>
<p id='test'>
Klick mich!
</p>
</body>
</html>