Getting Tag title from javascript
Hi all,
From one javascript file I am receiving the following array:
tags ["parenttag:tag1/subtag1", "parenttag:tag1/subtag2", "parenttag:tag1/subtag3", "parenttag:tag2/subtag4", "parenttag:tag2/subtag5"]
I would need to get each tag title from these values. E.g from "parenttag:tag1/subtag1" the tag title is defined as "Subtag 1"
Is there any way of doing this from javascript?
Thank you.