3

I use google code to defer loading javascript (google pages)

But I have some inline javascripts such as:

<script type="text/javascript">
$(function () {
    alert("please work");
});
</script>

And this gives me:

Uncaught ReferenceError: $ is not defined

I think I need some function, which was triggered after jQuery was loaded and init my inline javascripts. But if there is another way, I will be glad.

EDIT:

Some of you are completely out of topic. Mahesh Sapkal was close.

With this code I have no error, but still don't work

<head>
    <script type="text/javascript">
        var MhInit = NULL;

        // Add a script element as a child of the body
        function downloadJSAtOnload() {
            var element = document.createElement("script");
            MhInit = element.src = "my_packed_scripts.js";
            document.body.appendChild(element);
        }

        // Check for browser support of event handling capability
         if (window.addEventListener)
            window.addEventListener("load", downloadJSAtOnload, false);
         else if (window.attachEvent)
             window.attachEvent("onload", downloadJSAtOnload);
         else window.onload = downloadJSAtOnload;
    </script>

</head>
<body>
    <script type="text/javascript">
        MhInit.onload = function() {
            console.debug("here");
        };
    </script>
</body>
Salman A
  • 229,425
  • 77
  • 398
  • 489
Manic Depression
  • 922
  • 1
  • 14
  • 27

5 Answers5

5

You cannot use jQuery before it is loaded. If you move the <script src="jquery.js" /> at the bottom of your page you must also move all the lines that use $(...) below it.

There is a tricky solution that goes something along these lines:

1) Defining few variables at the top of your page:

var _jqq = [];
var $ = function(fn) {
    _jqq.push(fn);
};

2) In the middle of the page you can write:

$(function() {
    alert("document ready callback #1");
});
$(function() {
    alert("document ready callback #2");
});

3) At the bottom of your page, include jQuery:

<script src="//code.jquery.com/jquery.min.js"></script>

4) And finally:

$(function() {
    $.each(_jqq, function(i, fn) {
        fn();
    });
});

Demo

Salman A
  • 229,425
  • 77
  • 398
  • 489
2

If you are going to implement async loading of Javascripts, then it would be a better idea to not have inline Javascript which depends on the asynchronously loaded file.

I suspect that you are loading jQuery asynchronously, i.e. after the DOM content has loaded, so any inline scripts in your DOM dependent on jQuery will fail. In that case, you may want to use something like RequireJS to manage your JS dependencies, and load them asynchronously.

However, if you want to go for a simpler solution, I would suggest putting your JS libraries at the end of the DOM, and binding any dependencies to an onload handler.

Something like this

<body>
    <!-- Body content -->
    <script>document.onload = function() { //use jQuery here }</script>
</body>
<script src="/path/to/jQuery/"></script>
Achrome
  • 7,273
  • 14
  • 32
  • 44
2

Since you are deferring loading of jquery, your inline javascript should only be called when jquery has finished loading. Use the following code, to check if the library was loaded.

var scriptElem = document.createElement("script");

scriptElem.onload = function() {
    alert('please work');
};

scriptElem.src = "http://code.jquery.com/jquery-1.10.1.min.js";

document.getElementsByTagName("head")[0].appendChild(scriptElem);
Mahesh Sapkal
  • 7,898
  • 1
  • 28
  • 45
0

when i want defer load jquery, i use like that:

on header

<script> var callBackSomething = [];</script>

after < /body> tag

<script defer src="//code.jquery.com/jquery.min.js"></script>
<script defer src="main.js"></script>

in main.js

if (typeof callBackSomething !== 'undefined' && $.isArray(callBackSomething )){
    $.each(callBackSomething , function (k, v) {
        if($.isFunction(v))
            v();
    });
}

and in page

let js_callback = function () {
// code jquery in here
};
callBackSomething.push(js_callback);
Hung Pham
  • 129
  • 1
  • 2
-3

try this http://w3schools.com/jquery/default.asp. you can easily do that.

<script>
$(document).ready(function(){
$("p").click(function(){
alert("please work");
});
});
</script>
vikas agrahari
  • 376
  • 2
  • 5