Option 1: Use this to change the background color when user places mouse over the lin <a href="link.html" onMouseOver="document.bgColor='red'">Link Text</a>
CrAzZy.Wap.Sh
Option 2: Use this to change the background color when user removes mouse from over the link (onMouseOut). <a href="link.html" onMouseOut="document.bgColor='green'">Link Text</a>
CrAzZy.Wap.Sh
Option 3: Use this to change the background color when user clicks the link (onClick). <a href="link.htm" onClick="document.bgColor='blue'">Link Text</a>
Option 4: Use this to change the background color twice, once when the user places the mouse over the link then again when the user takes the mouse off the link (onMouseOver and onMouseOut). <a href="link.htm" onMouseOver="document.bgColor='red'" onMouseOut="document.bgColor='green'">Link Text</a>