Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <script type="text/javascript">
  2. // Create the tooltips only when document ready
  3. $(document).ready(function()
  4. {
  5. // Use the each() method to gain access to each elements attributes
  6. $('area').each(function()
  7. {
  8. $(this).qtip(
  9. {
  10. content: {
  11. text: $(this).attr('title'),
  12. },
  13. style: {
  14. classes: 'qtip-light',
  15.  
  16. widget:true
  17. },
  18.  
  19. });
  20. });
  21. });
  22. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement