wog39,
<!DOCTYPE html>
<style type="text/css">
#button1{ background: #ccc; display: block; cursor: pointer;}
</style>
<head>
<title> Google chrome is a piece of shit! </title>
</head>
<body>
<div class="button"><a id="button1">button</a></div>
</body>
<script language="JavaScript">
window.onload = init;
var h;
function init(){
h = document.getElementById('button1');
h.onclick = Start;
}
function Start(){
//console.dir(h);
h.textContent? (h.textContent = 'nonono'): (h.innerText = 'nonono'); }
</script>