Is there a way to assign or define group within html markup?
1 Answer
You can use the data tags in HTML.
<a href="#" data-group=""></a>
3 Comments
emphaticsunshine
I was thinking to use that. Do you know if it works? Anyways I will give a try
emphaticsunshine
Do I just need to assign group name to data-group?? Like data-group="search"
Silvermind
@emphaticsunshine that's exactly what he meant. It's good practice to use
data- as a prefix for non-standard/non-existing attributes.