Firefox does not run $ (document) .ready (function () {

I have a page using jquery function:

$(document).ready(function() {

and I put a warning there, and tried everything. It does not work in firefox. But it works fine in IE and Chrome.

I checked everything in firebug and it just didn't fire.

Here is the page on which it does not work: http://www.halotracker.com/UserVideos.aspx

On this page, the FS is deep inside the site, but I tried to put it at the very top inside the head. None of the methods work.

Thanks in advance for your time.

+5
source share
5 answers
<script type="text/jscript">

probably will not start in Firefox: JScript is an interpretation of JavaScript in Internet Explorer. Use

<script type="text/javascript">

, , ( head.)

+14

jQuery (document).ready , document.ready .

, wordpress jQuery (document).ready, jQuery .

Firefox 18, Chrome 23, Opera 12 . jQuery v1.7.2

, , .

, / jQuery.

+2

, , $(document).ready, , . , , .

0

, jQuery Address.js . - Edge, Chrome Opera , , jQuery Address, jQuery/JavaScript . Mozilla Firefox , jQuery/JavaScript Mozilla Firefox. jQuery, . , Mozilla Firefox , , jQuery/JavaScript- .

0

Btw, :

$(function() {
-2

All Articles