Guest User

Untitled

a guest
Nov 17th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. (function($) {
  2. $('.capabilities-wrapp .capabilities-caption').click(function() {
  3. $('.tooltip').remove();
  4. $('.stat-capabilites_map path.cls-3').each(function(e) {
  5. $('body').prepend('<div class="sss" id="sss'+e+'"></div>');
  6. $("#sss"+e).html($(this).attr('title')).css({"top":$(this).offset().top, "left":$(this).offset().left});
  7. })
  8.  
  9. });
  10. })(jQuery);
  11.  
  12. .sss {
  13. position: absolute;
  14. z-index: 100;
  15. }
Add Comment
Please, Sign In to add comment