A Tooltip from JqueryUi.com
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>jQuery UI Tooltip - Default functionality</title> <link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css"> <script src="//code.jquery.com/jquery-1.10.2.js"></script> <script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script> <link rel="stylesheet" href="/resources/demos/style.css"> <script> $(function() { $('.toolatip').tooltip(); }); </script> <style> label { display: inline-block; width: 2em; } </style> </head> <body> <p><a class="toolatip" href="#" title="That's what this widget is">Tooltips</a></p> </body> </html>
0 Comments