Start a new discussion

To start a new discussion please visit the discussions section of the GitHub home page of the project.

Discussions on GitHub

You can also search our old self-hosted forums for any useful information below but please note that posting new content here is not possible any more.

Re: Newbie question upgrading from 6.0.4

Home Forums Older releases 0.9.x Newbie question upgrading from 6.0.4 Re: Newbie question upgrading from 6.0.4

#1484
admin
Keymaster

Hi,

The problem seems to be that jQuery is not properly included on your page. So just replace the following:

<script type="text/javascript" src="jquery-loader.js"></script>

with something like:

<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>

(or you could, of course, use a local copy of jQuery hosted on your server).

The loader script is just used on the demo page to allow easy testing with different jQuery versions.

Cheers!