View Full Version : expand / collapse stopped working
JoelKB
09-14-2011, 11:47 PM
1) Script Title: ddaccordion
2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex17/ddaccordion.js
3) Describe problem:
We use the have this script expand & collapse part of our left navigation, but just realized that it does not work anymore (not sure why or when it stopped)
Please help This is our home page (http://www.ezcontactsusa.com/) where I see the problem
Thanks
jscheuer1
09-15-2011, 01:06 AM
The jQuery script library is added to the page too late to do the accordion any good:
. . . pan><span class="copyright"><br />
<br />
© Copyright 2010 EZContactsUSA.com. All Rights Reserved.</span></div>
</td>
</tr>
</table>
</td>
</tr>
</table>
<script type="text/javascript" src='https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js'></script>
<script type='text/javascript' src='/images/css/jquery.autocomplete.js'></script>
<script type="text/javascript">
//jQuery.noConflict();
(function($) {
$().ready(function() {
function formatItem(row) {
return row[0] + " (" . . .
Move it to here:
. . . lign="left" valign="top" class="data" height="2">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="15%" valign="top"><!--
<script type="text/javascript" src="/images/tabs/jquery.min.js"></script>
-->
<script type="text/javascript" src='https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js'></script>
<script type="text/javascript" src="/images/tabs/ddaccordion.js"></script>
<script type="text/javascript">
//Initialize 2nd demo:
ddaccordion.init({
headerclass: "technology", //Shared CSS class name of headers group
. . .
JoelKB
09-15-2011, 02:29 AM
Thanks so much John :) That's quick
Powered by vBulletin® Version 4.2.2 Copyright © 2019 vBulletin Solutions, Inc. All rights reserved.