In a simple html page I have:
<SCRIPT>
function Clicker(number){
if (number == 1)
document.write ('<style type="text/css">body {background-color: #cccccc;}</style>');
}
</SCRIPT>
and in the html body:
<a onmouseclick="Clicker(1)" href="#">clic</a>
But when I click on the link nothing happens. Where am I wrong?