»
EnglishFrenchVietnamese

Print - Disappearing link - JavaScriptBank.com

Full version: jsB@nk » Link » Disappearing link
URL: https://www.javascriptbank.com/disappearing-link.html

Disappearing link © JavaScriptBank.comYou can customize this by chaning the color of the text, or the background color of the text. When you write the JavaScript link with this JavaScript, you must be sure to keep the id, onmouseover, and onmouseout tags.

Full version: jsB@nk » Link » Disappearing link
URL: https://www.javascriptbank.com/disappearing-link.html



JavaScript
<script id="clientEventHandlersJS" language="javascript">function id5_onmouseout() {            id5.style.backgroundColor = "black";            id5.style.color = "chartreuse";}function id5_onmouseover() {                     id5.style.backgroundColor = "white";                     id5.style.color = "white";}//--></script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<a id="id5" href="http://JavaScriptBank.com/" onmouseout="return id5_onmouseout()" onmouseover="return id5_onmouseover()">Click THIS NOW</a><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->