I want to make a tooltip using an anchor tag with the text coming from a properties file.
How do I get this text from application.properties to the anchor's title attribute?
msg.delete=click to delete this item.
JSP
<a title="{tooltips.delete}" href="do something">
<img src="../images/delete_icon.png">
</a>