snowboardr
Programmer
I am having trouble changing text in a span could someone help me? Im really bad at JS... I will admit it 

Code:
<SPAN ID="SPAN"></SPAN>
<INPUT TYPE=BUTTON VALUE="Change text" ONCLICK="Text()">
<SCRIPT LANGUAGE="JavaScript">
function Text()
{document.getElementById("SPAN") = "New text";}
</SCRIPT>