vote up 3 vote down star

I just started learning JavaScript and am wondering why this simple snippet hangs when I click on the "Call function" button. What am I missing?

<html>
<head>

<script type="text/javascript">
function myfunction()
{
document.write("hello");
}
</script>

</head>
<body>

<form>
<input type="button" 
onclick="myfunction()" 
value="Call function">
</form>

</body>
</html>
flag

what you mean by "hangs" ? – Canavar Feb 22 at 16:57
When I clicked the "Call function" button, my Firefox tab shows a "page loading" icon indefinitely. – RexE Feb 22 at 17:39

6 Answers

vote up 3 vote down check

You need to write inside an element or give an element a value, or you should use document write like that :

<html>
<head>

<script type="text/javascript">
function myfunction()
{
document.getElementById("lblMessage").innerText = "hello";
document.getElementById("txtMessage").value = "hello";
//document.write("hello");
}
</script>

</head>
<body>

<form>

<script type="text/javascript">
document.write("This is written while page processed by browser !<br />");
</script>

<input type="text" id="txtMessage" /><br />
<span id="lblMessage"></span><br />
<input type="button" 
onclick="myfunction()" 
value="Call function">
</form>

</body>
</html>
link|flag
Great ScarletGarden! Thanks for showing me how to do it right. (Side note: I noticed that the innerText bit didn't work for me in Firefox on Safe Mode, although it worked in IE and Chrome.) – RexE Feb 22 at 17:35
You're welcome, Javascript is an exciting scripting language, enjoy ! – Canavar Feb 22 at 17:46
vote up 0 vote down

I can't explain the "hang" but please take a look at this page for a primer on document.write: http://javascript.about.com/library/blwrite.htm I would also like to second that you probably want to write to a specific element in the page rather than just overwriting the entire page.

link|flag
vote up 0 vote down

document.write, but where? You have to specify this.

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Hello</title>
</head>
<body>
<pre><script type="text/javascript">
function myfunction() {
  d = document.getElementById('hello');
  d.style.display = "block";
  d = document.getElementById('callme');
  d.style.display = "none";
}
</script>
</pre>
<div id="hello" style="display:none">
Hello
</div>
<div id="callme">
  <input type="button" 
     onclick="myfunction()" 
     value="Call function">
  </input>
</div>
</body>
</html>
link|flag
vote up 1 vote down

Not too sure what you mean by "hang"... Try this out... The alerts can be removed, but will inform you of where it is at in execution...

<html>
  <head>
     <script type="text/javascript">
       function myFunction() {
          //for debugging
          alert('Made it into function');
          document.getElementById('MyOutputDiv').innerHTML = 'Word To Your Mom...';
          //for debugging
          alert('function complete');
       }
     </script>
   </head>
   <body>
     <input type='button' onclick='myFunction();' value='Call Function'>
     <br>
     <div id='MyOutputDiv'></div>
   </body>
 </html>
link|flag
vote up 3 vote down

If you simply want to see your button doing something then try:

alert("Hello");

instead of the document.write.

link|flag
vote up 1 vote down

Where do you expect the function to output its "hello"? Right into the button's source code? That makes no sense. The browser is confused and hangs.

Document.write doesn't magically insert something at the end of your document. It writes its stuff out right there where it is called.

link|flag
You are incorrect. When a document is parsed document.write can be used to insert content. After the parsing the document is closed. If document.write is used after the document was closed, a new document is created and replaces the original document. The browser is not confused nor hangs. – some Feb 22 at 19:08
The OP's browser obviously does hang, he clearly states that right there in his question. – RegDwight Feb 22 at 21:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.