Within my HTML, I have a parent div and a child div. I am trying to hide the parent div while still displaying the child div (which is a canvas element). I've attempted using show, hidden, and visibility options but none of them seem to be working properly.
var el = $('#wrapper').detach();
$("#open_menu").click(function(){
$(this).append(el);
});