I am trying to insert path to the image into HTML 5 attribute. I've tested such cases:
<option value="en" th:data-imagesrc="@{/images/en.png}">
English
</option>
and
<option value="en" data-imagesrc="@{/images/en.png}">
English
</option>
But both cases are failed. What is the correct way to set HTML 5 attribute like it's th:src or th:href?