how to disable certain links of jquery accordion
accordion, jquery
Solution
You can put classes on the things you want to disable.
Then do :
jQuery(".toDisable").live("click", function (){return false;});
or something similar
Problem
I am currently implemented a jquery based accordion on a navigation section, but some parts of the navigation don't need to be part of the accordion (if there are no categories etc) i am just wondering if it is possible to disable parts of the accordion or not ? i get the feeling this could be impossible but this site has surprised me before :) Thanks very much.