<html><head><title>Test</title>
<script type="text/javascript">
function post (anzahl) {
//IE,FF
document.getElementById('post').setAttribute("text", "asd");
//Opera
document.all.post.text = "Post(" + anzahl + ")";
document.all.post.style = "font-weight: bold";
}
</script>
<body onload="post(1)">
<a id="post" href="post.php" title="POST">Post</a>
</body>
Bei Opera funkrioniert dieses script aber bei IE und FF nicht
ich will den text des links verändern ....
was mache ich falsch ?
<script type="text/javascript">
function post (anzahl) {
//IE,FF
document.getElementById('post').setAttribute("text", "asd");
//Opera
document.all.post.text = "Post(" + anzahl + ")";
document.all.post.style = "font-weight: bold";
}
</script>
<body onload="post(1)">
<a id="post" href="post.php" title="POST">Post</a>
</body>
Bei Opera funkrioniert dieses script aber bei IE und FF nicht
ich will den text des links verändern ....
was mache ich falsch ?
Kommentar