I call an application process in my oracle apex page and displayed a wait popup before calling the application process using the code
apex.widget.waitPopup();
It works fine and then I want to remove the wait popup after the process is completed, so I used the code
$("#apex_wait_popup").remove();
$("#apex_wait_overlay").remove();
But the remove code doesn't works. What might be the reason?