This site will have limited functionality while we undergo maintenance to improve your experience. If an article doesn't solve your issue and you want to ask a question, we have our support community waiting to help you at @FirefoxSupport on Twitter and/r/firefox on Reddit.

ابحث في الدعم

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

cannot get a javasript alert to work in FF, but the same alert works in IE, Chrome, Opera.

  • 4 ردود
  • 1 has this problem
  • 31 views
  • آخر ردّ كتبه Yiki

more options

Just trying to get the below alert message to display in FF, but it won't. It works in other browsers. I checked the settngs in Options/Content and Javascript is on. This could be obvious but I can't see anything.

alert("Example message!");

Just trying to get the below alert message to display in FF, but it won't. It works in other browsers. I checked the settngs in Options/Content and Javascript is on. This could be obvious but I can't see anything. alert("Example message!");

الحل المُختار

Try "text/javascript" for your type attribute. Firefox does not run jscript.

Read this answer in context 👍 0

All Replies (4)

more options

How and where are you trying to run that JavaScript code?

You can no longer run JavaScript code via the location bar in Firefox 6 and later.
You can use the Scratch pad (Firefox > Web Developer > Scratchpad; Shift+F4) to run JavaScript code.

more options

It references a javascript file from the head tag. See code sample below. It works in other browsers without any problems.

<head>

<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>Example</title>
<script type="text/jscript" src="example.js"></script>

</head>

And this is the code in the javascript file: alert("Example message!");

more options

الحل المُختار

Try "text/javascript" for your type attribute. Firefox does not run jscript.

more options

Thanks, knorretje. That worked.