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
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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.