I am new to angularjs
. I am using a textangular
to show a html document. I want to highlight some words from that html and also want to focus that word.So, I am using tabindex
and class = mark
to highlight and focus. So, Here At first I am adding
<span class="mark">ABC</span>
so that It will get highlighted, after that I want to add a tabindex=1
attribute to this .So that It become like
<span class="mark" tabindex="1">ABC</span>
Here I want to add this tabindex
dynamically. That means , I want to find that text and then add a tabindex
to that text only.How can I achieve this ?At a time tabindex can be applied to only one word.