Das kurze JavaScript erzeugt auf einfache Weise einen Mouse-Over Button. Gehen Sie mit der Maus einfach einmal über den Button.
Autor: unbekannt
in <body> einfühen
<input type=button
value="Demo Button"
style="background: darkblue; font-size: 12px; cursor:hand; color: white;"
onmouseover="this.style.background='lightblue'; this.style.color='black';"
onmouseout="this.style.background='darkblue'; this.style.color='white';">
|