Pesquisar no apoio

Evite burlas no apoio. Nunca iremos solicitar que telefone ou envie uma mensagem de texto para um número de telefone ou que partilhe informações pessoais. Por favor, reporte atividades suspeitas utilizando a opção "Reportar abuso".

Saber mais

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

  • 4 respostas
  • 1 tem este problema
  • 31 visualizações
  • Última resposta por 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!");

Solução escolhida

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

Ler esta resposta no contexto 👍 0

Todas as respostas (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

Solução escolhida

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

more options

Thanks, knorretje. That worked.