<jr-hint>

Quick way to add some custom messages to elements. Attribute name can be a tag, id or class. The value is the message to display.

Add attribute console to write to console instead.
Add attribute fixed to keep the message field visible until closed with x-button.


<button>OK</button>
<div id="square"></div>
<div class="circle"></div>
<div class="circle"></div>

<jr-hint
	button="This is a button."
	square="A square message. <br>Next line..."
	circle="A circular message."
></jr-hint>