Event-Hanler unter Netscape
Bernhard Helmes
- javascript
Hallo ihr Lieben,
ich will einfach eine JavaScript-Anwendung starten, inden ich ein Test anklicke, der aber nicht wie beim Href unterstrichen sein soll.
Wie mache ich das ?
<a onClick="Start()>Text</a> klappt anscheinend nicht
Danke für jede Antwort
Gruß
Bernhard
Hallo ihr Lieben,
ich will einfach eine JavaScript-Anwendung starten, inden ich ein Test anklicke, der aber nicht wie beim Href unterstrichen sein soll.
Wie mache ich das ?
<a onClick="Start()>Text</a> klappt anscheinend nicht
Hallo Bernhard , klappt es vielleicht mit
<a onClick="Start()">Text</a> ?
Viele Grüsse Champ
Danke für jede Antwort
Gruß
Bernhard
Das war natürlich Quatsch, so kannst du es machen:
<html>
<head>
<title>Unbenannt</title>
<style>
.standardbold { font-family: Arial; font-size: 9pt; font-style: normal; line-height:normal; font-weight: bold; font-variant: normal; text-transform: none; color: #0000ff; text-decoration: none }
</style>
<script>function test(){alert('He ho')}</script>
</head>
<body>
<a class="standardbold" href="javascript:test()">Text</a>
<a class="standardbold" href="#" onclick="test()">Text2</a>
</body>
</html>