Is there a way in jQuery where I can hide an element, but not change the DOM when it\'s hidden? I\'m hiding a certain element but when it\'s hidden, the elements below it mo
Try setting the visibility to hidden:
visibility
hidden
$("#id").css("visibility", "hidden");