I currently set the title attribute of some HTML if I want to provide more information:
<p>An <span class="more_info" title="also called an underscore">underline</span> character is used here</p>
Then in CSS:
.more_info {
border-bottom: 1px dotted;
}
Works very nice, visual indicator to move the mouse over and then a little popup with more information. But on mobile browsers, I don't get that tooltip. title attributes don't seem to have an effect. What's the proper way to give more information on a piece of text in a mobile browser? Same as above but use Javascript to listen for a click and then display a tooltip-looking dialog? Is there any native mechanism?

titleattributed element and see a tooltip. Since phones can't yet detect hovering, I expected to need to press on the screen there too. I also kind of expected the mobile browser to deal with this intelligently since I did set thetitleattribute properly. Maybe some kind of indicator there was a tooltip and a way to see it... or maybe it automatically comes up until you click elsewhere... I guess I didn't expect the browser to disregard my HTML. – at. Sep 21 '12 at 17:53span:hover:after { content: attr(title) }would reveal more information. – cimmanon Sep 21 '12 at 18:14span:hover:aftercss you mentioned, that is supposed to make this work on an iPhone as well? – at. Sep 21 '12 at 18:50