The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello,
I have pages created with label "ESP". At some point I will want to archive the page. To do this I want to remove "ESP" and add "Archived".
Below is code that allows a new label to be added OK through my testing, but the removal does not work.
<!DOCTYPE html>
<html><head></head>
<body>
<button onclick="runScript()">Archive Project</button>
<p><div id="result"></div></p>
<script type="text/javascript">
function runScript() {
var archived = "archivedtest";
AJS.Labels.addLabel(archived, AJS.params.pageId, AJS.params.contentType);
var current = "esp";
var labels = $(".aui-label-split-main");
if( labels[i].innerHTML.search(current) == esp ) {
AJS.Labels.removeLabel( $(labels[i]), AJS.params.pageId, AJS.params.contentType);
}
};
</script>
</body></html>
Please can someone advise on what is wrong with the code and how I can remove "ESP" label?
Thanks!
@JONATHAN RUSSELL welcome to the Atlassian community
If you are truely archiving the page I would recommend leaving the labels. The page will be the archive section that most will not be able to access. You may also want those labels if you restore it. You might consider only adding a label if you want it but I would think you would want to retain the old labels for true archival purposes.
Hi everyone, We’re always looking at how to improve Confluence and customer feedback plays an important role in making sure we're investing in the areas that will bring the most value to the most c...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.