jQuery, Hiding elements on ready is always jumping on page load. how can this be avoided?
- by adardesign
This is the code.
I can't apply display:none;
$(document).ready(function() {
$("#LeftNav li.navCatHead").not(":first").siblings("li").hide().end().end().first().addClass("open");
});