In html, is there a tag that I can add an id attribute to, that does not have any effect on the html page, but can still be accessed with a jQuery selector?
Here is an example:
<li><a href="#"><i class='fa fa-link'></i> <span>Another Link</span></a></li>
If I have the above code in a list, what tag can I add to this html, so that I can then use jQuery to perform actions on the code items as children?
The above code is just an example, I am wanting to be able to use this technique for any html element.
EDIT
Is the <span>
tag what I am looking for?
EDIT2
I have tried the following with a span tag:
<span id="qwerty123"><li><a href="#"><i class='fa fa-link'></i> <span>Another Link</span></a></li></span>
However, the list items are not being displayed correctly. I am using an AdminLTE template and this template uses custom styling for these list items.
How else can I achieve the desired result? Can I add data attributes or some other html coding technique?
EDIT3
The html tag with the id needs to be before any of the other tags, so that all the rest of the tags can be treated as children.
You can try
In a block context, you can do the same with "
div
":I don't believe you can use a
div
within theli
, however.