<html>
<script type="text/javascript" language="javascript">
window.onload = function() {
document.getElementById("Button6").onmouseover = function()
{
this.style.backgroundColor = "#9933ff";
}
document.getElementById("Button6").onmouseout = function()
{
this.style.backgroundColor = "#ffff";
}
}
</script>
<body>
<input type="submit" id="Button6" value="magic">
</body>
</html>
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.