vote up 0 vote down star

I have the following HTML and Javascript in a page that should display "TEXT" in the body and alert me with "alert!" However, it only displays "TEXT"; my Javascript console says "msg is undefined."

<html>
<head>

<script type="test/javascript">
function msg() {
    alert("alert!");
}
</script>

</head>
<body>

<p>
    <script type="text/javascript">
        document.write('TEXT');
        msg();
    </script>
</p>

</body>
</html>
flag

1  
"test/javascript"? Typo here or in the real page? – Steve Gilham Aug 18 at 20:10
Actual typo. I'll preserve it here for posterity :) – Andrew Keeton Aug 18 at 20:22

6 Answers

vote up 9 vote down check

If that's a direct copy/paste, then your problem appears to be a type:

 <script type="test/javascript">

You have test there instead of text

link|flag
UGH. I swear I started at that line 10 times and didn't see it. – Andrew Keeton Aug 18 at 20:18
*stared - It's been a long day... – Andrew Keeton Aug 18 at 20:19
The irony of a typo when commemting about not seeing a typo is not lost on me (I misspelled commenting to make you feel better ;) – RHSeeger Aug 18 at 20:34
vote up 1 vote down

As so many others have pointed out, the type attribute of the script tag is wrong; it should be "text/javascript". To avoid this in the future, you can leave off the type attribute altogether as browsers will default to "text/javascript" unless otherwise specified.

link|flag
vote up 0 vote down

you have a typo:

<script type="test/javascript">

should be

<script type="text/javascript">
link|flag
vote up 1 vote down
<script type="test/javascript">

You have a typo here. It should say "te**x**t/javascript". It is not parsing correctly in the current state.

link|flag
vote up 1 vote down

you spelled 'text' wrong in the opening script tag:

link|flag
vote up 1 vote down

You typed test/javascript That could be the problem :)

link|flag

Your Answer

Get an OpenID
or

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