Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>You would need to use the jQuery.noConflict method described at <a href="http://docs.jquery.com/Core/jQuery.noConflict" rel="nofollow noreferrer">http://docs.jquery.com/Core/jQuery.noConflict</a>.</p> <p>Not for certain if version 1.2.1 will have it though.</p> <p>Just read the instructions on that page for how to wire it up. First thing is that you'll need to put jQuery before the other libraries.</p> <p>Update: added the code below to help you apply the fix. If the line jQuery.noConflict() causes an error then you may need to try a newer version of jQuery.</p> <pre><code>&lt;script src="js/jquery-1.2.1.min.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; jQuery.noConflict() &lt;/script&gt; &lt;!-- lightwindow files --&gt; &lt;script type="text/javascript" src="lightwindow/javascript/prototype.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="lightwindow/javascript/scriptaculous.js?load=effects"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="lightwindow/javascript/lightwindow.js"&gt;&lt;/script&gt; &lt;link rel="stylesheet" href="lightwindow/css/lightwindow.css" type="text/css" media="screen" /&gt; &lt;!-- accordion scripts --&gt; &lt;script src="js/menu.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script src="js/jquery.cookie.js" type="text/javascript"&gt;&lt;/script&gt; &lt;link rel="stylesheet" type="text/css" href="css/accordion.css" /&gt; </code></pre> <p>Also, NOTE you may need to swap some of your code from $(...) to jQuery(...)</p> <p>From the jQuery doc page:</p> <p><em>where you used to do $("div p"), you now must do jQuery("div p").</em></p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload