Ah, I see. Since you have includeAll: false, it required a different
workaround, since that forces the first available letter's contents to
show. I grabbed a copy of your test and verified that this works:
$(function(){
var clicks = 0;
$('#alphalist').listnav({
includeAll: false,
// cookieName: 'xalpha_list',
onClick: function(){
clicks++;
if(clicks == 1){$('#alphalist').show();} // this has clicks
== 1 instead of == 2 now
}
}).hide(); // I added this
});
Hope that works for you.
- Jack
rubycat wrote:
Hi--thanks for your response. I put my attempt up here temporarily:
mcXcpc.org/site/testing3/
Sorry to be a pain--you have to remove the uppercase X from the URL
first.