Hi Dave,
The first thing that the listmenu plugin does is this:
$list.css('visibility', 'hidden'); // hiding to prevent pre-load
flicker. Using visibility:hidden so that list item dimensions remain
available
which I *think* should have prevented what you're describing. If not, is
there an example I can take a look at?
Thanks,
Jack
Dave wrote:
Hi
Had a problem with the ul being shown unformated before the list got
handled by $('#mylist).listmenu();. Solved this by adding #mylist
{display:none;} in my css file and then
<script type="text/javascript">
$(function(){
$('#mylist').listmenu();
$('#mylist').css("display","block");
});
</script>
It works ok, but maybe you could consider adding this so it would be
handled automatically by listmenu.
Cheers