Hi Guys
I woud like hide some content in Confluence.
My plan is write plugin with javascript (jQuery) and it is works! But my problem is the content still showing for 1-2 sec. before will be hide.
I have try:
jQuery(document).ready(function() {
// My Javasctipy code
....
AJS.$('#browse-menu-link').parent().remove();
...
});
OR
AJS.toInit(function () {
// My Javasctipy code
....
AJS.$('#browse-menu-link').parent().remove();
...
});
but still the same efect.
Can anyone help ? How can I hide/remove some elements before document will be shown.
Regards
Mik
Community moderators have prevented the ability to post new answers.
In you general configuration, try checking "JavaScript served in header". Avoid using the "jQuery(document).ready(function() {" block as this only fires after the page is loaded. So you need to come up with something clever like setting a css style to hide the content, that code wont work if the elements don't exist yet when the code is executed.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.