Note that there are some explanatory texts on larger screens.

plurals
  1. POtwo jquery doesnt work
    primarykey
    data
    text
    <p>i have two jquery(can increase), one of them masterpage and the other is in contentpage... first i added contentpage query(it is an horizontal accordion menu) and it worked perfectly then i need second one (to get collapsible panel title position) in masterpage... but after added second, both of them didnt work... what is the problem exactly...</p> <p>samples code </p> <p>this is first added to make horizontal accordion menu in my contentpage :</p> <pre><code> &lt;script src="jquery.zaccordion.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script src="jquery.easing.1.3.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script src="jquery-1.4.2.min.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script src="jquery.zaccordion.min.js" type="text/javascript"&gt;&lt;/script&gt; /*In MasterPage to Horizontal accordion*/ &lt;script src="http://code.jquery.com/jquery-1.5.js" type="text/javascript"&gt; /*Second query plugin*/ &lt;script type="text/javascript"&gt; $(document).ready(function () { $("#featured").zAccordion({ width: 600, height: 260, tabWidth: 75 }); }); &lt;/script&gt; </code></pre> <p>second added code to change position of title panel of collapsible panel according to expand and collapse..</p> <pre><code>&lt;script src="http://code.jquery.com/jquery-1.5.js" type="text/javascript"&gt; $(document).ready(function () { var bodyHeight = $(document).height(); var panelHeight = $('#pnlSearchContent').height(); --CP content panel height var panelHeightPosition = bodyHeight - panelHeight; $('#pnlSearchTitle').offset().top = panelHeightPosition; -- CP Title panel final position }); &lt;/script&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

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