• 0

jQuery Quicksand


Question

http://razorjack.net/quicksand/

http://razorjack.net/quicksand/docs-and-demos.html

I'm trying to learn how to use Quicksand but can't get it to work. Is there a video tutorial how to learn it? Not really good at jQuery and javascript.

Link to comment
https://www.neowin.net/forum/topic/1131050-jquery-quicksand/
Share on other sites

11 answers to this question

Recommended Posts

  • 0


<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript" src="../js/tooltips.js"></script>
<!-- <script type="text/javascript" src="../js/main.js"></script> -->
<script type="text/javascript" src="../js/jquery-1.4.1-and-plugins.min.js"></script>
<script type="text/javascript" src="../js/quicksand.js"></script>
[/CODE]

Well... load quicksand.js after jquery but before your code, first of all. If you move the tooltips code under the document.ready() it should work.

Or

[CODE]
(function($) {
$("#footer-social a[title]").tooltips();
})(jQuery)
[/CODE]

  • 0

You're loading two different versions of jQuery:

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>

<script type="text/javascript" src="../js/tooltips.js"></script>

<!-- <script type="text/javascript" src="../js/main.js"></script> -->

<script type="text/javascript" src="../js/jquery-1.4.1-and-plugins.min.js"></script>

<script type="text/javascript" src="../js/quicksand.js"></script>

That second version of jQuery (jquery-1.4.1-and-plugins.min.js) is overwriting the first one (jquery.min.js). If you need both, then you need to set them up using jQuery.noConflict (see here), otherwise, get rid of one of them, then include the tooltips and quicksand plugins after whichever one you keep. That should get rid of the tooltips error message you're getting

  • 0

http://www.romabio.com/products/preview.html

I change it to the setting in the http://jsfiddle.net/jtpvb/2/ but it does not work still. It works when I put it in the jsfiddle but when I do it in my html it does not work. HELP!

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.