The simple answer is: you cannot, the hints do not support this function,
However, you can use jquery or create your own modal / dialog to emulate this function.
See jQuery UI Dialo for ideas and examples.
Set up an example from the page to check jsfiddle
HTML:
<div id="dialog-confirm" title="Empty the recycle bin?"> <p><span class="ui-icon ui-icon-alert" style="float: left; margin: 0 7px 20px 0;"></span>These items will be permanently deleted and cannot be recovered. Are you sure?</p> </div> <p>Sed vel diam id libero <a href="http://example.com">rutrum convallis</a>. Donec aliquet leo vel magna. Phasellus rhoncus faucibus ante. Etiam bibendum, enim faucibus aliquet rhoncus, arcu felis ultricies neque, sit amet auctor elit eros a lectus.</p>
Js
$(function() { $( "#dialog-confirm" ).dialog({ resizable: false, height:140, modal: true, buttons: { "Delete all items": function() { $( this ).dialog( "close" ); }, Cancel: function() { $( this ).dialog( "close" ); } } }); });
CSS for large posts, but you can link this file:
http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css
isJustMe
source share