$(".leftNav").animate({"visibility": "visible"}, 200);
I attempted the code provided above but unfortunately, it did not produce the desired result and I am unable to utilize .show()
However, if the correct method involves using .show()
, an alternative approach that might resolve my issue pertains to CSS. The question then becomes:
Is there a way to apply position: fixed
to an element without having to use display:block? As I currently require display:none
in order to implement show()
Thank you