Question
What is the best way to have lots of text for the title
attribute within the HTML input type button
?
Currently I literally just have lots of text, but this results in very long lines of HTML code. For example:
<input id="DoSomething" type="button" name="DoSomething" value="Do Something" title="This a shadow of the amount of text one can put as the title.">
My Use Case
Why use lots of text for the title
attribute? Because I'm trying to have instructions about the button's purpose within a tooltip. My webpage is crowded, and I don't want to list the text as a paragraph, external to the button. I am open to other ideas.