The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

JS Button to delete label and add label

JONATHAN RUSSELL
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
August 25, 2021

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!

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Brant Schroeder
Community Champion
January 9, 2022

@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.

TAGS
AUG Leaders

Atlassian Community Events