Like this:

<style type="text/css">
   #alphalist { display:none; }
</style>

$(function(){
   var clicks = 0;

    $('#alphalist').listnav({
        includeAll: false,
        cookieName: 'xalpha_list',
         onClick: function(){
            clicks++;
            if(clicks == 2){
               $('#alphalist').show();
            }
         }
    });
});

You can also take a look at demo 5 here to see onClick being used:

   http://www.ihwy.com/Labs/Demos/Current/jquery-listnav-plugin.aspx

- Jack

rubycat wrote:
Yes, the little treasure is your plug-in!!

Um, I hit a deadend though. But it's not you, it's me! I don't quite
understand where to put this stuff--am I to add it to to this?

$(function(){
     $('#alphalist').listnav({
     includeAll: false,
     cookieName: 'xalpha_list'
     });
});




Reply via email to