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.

Reply To: Not working out of the box

Home Forums Older releases 0.9.x Not working out of the box Reply To: Not working out of the box

#2583
admin
Keymaster

It’s a path related issue and jQuery is probably not loaded. Do not link to “jquery-loader.js” (it is used to allow easy testing with different jQuery versions) but include directly jQuery on your page – i.e. replace:

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

with:

<!-- jQuery -->
<script type="text/javascript" src="../libs/jquery/jquery.js"></script>

or with something like:

<!-- jQuery -->
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>