Inside the WordPress admin dashboard there is a button for making the left side menu collapse (to show just icons and not the icons + text on left side). How can I add jQuery so that it gets automatically collapsed once my plugin opens up. I tried this but it didn’t work for me. I want to give a sort of ‘full screen’ option inside dashboard. Can anyone help me on this?
I tried adding this jquery script to make it work, but it didn’t work for me:
<script>
jQuery(document).ready(function() {
jQuery("#collapse-menu").click();
});
You have to trigger the click event. Try,
Update:
Use the following code to check if menu is already folded, if not trigger click event to fold it.
None of that worked for me. I had to use
jQuery(document.body).addClass('folded');
Wordpress jQuery didnt like
$(document.body).hasClass('folded')
, I had to modify.Snippet below.