$(".leftNav").animate({"visibility": "visible"}, 200);
I tried it and it doesn’t work and I can’t use .show()
If I should be using .show() tho, another solution which may solve my issue is rather in regards of css and the question it’d be:
Can i position: fixed an element without to use display:block? Because i’d need display:none in order to use show()
Thanks
actually found my own answer with the correct syntax by following another post on stack:
Fading visibility of element using jQuery
Thanks for your answers tho.