Tooltips for mobile browsers
You can fake the title tooltip behavior with Javascript. When you click/tab on an element with a title attribute, a child element with the title text will be appended. Click again and it gets removed. Javascript (done with jQuery): $(“spanTooltips for mobile browsers”).click(function () { var $title = $(this).find(“.title”); if (!$title.length) { $(this).append(‘<span class=”title”>’ + … Read more