Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 952621
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T23:55:27+00:00 2026-05-15T23:55:27+00:00

I am writing my own tooltip function like so: $(.tip_holder).hover( function() { var $containerWidth

  • 0

I am writing my own tooltip function like so:

$(".tip_holder").hover(
  function() {

      var $containerWidth = $(this).width();

      var $containerHeight = $(this).height();

      var $tipTxt = $(this).text();

      var $tipTitle = $(this).attr('title');

      var $offset = $(this).offset();

      $('#icis_dashboard').prepend('<div id="tooltip">' + $tipTxt + '</div>');

      $('#tooltip').css({
          'position': 'absolute'
      });

      var $tipWidth = $('#tooltip').width();

      var $tipHeight = $('#tooltip').height();

      $('#tooltip').css({
          'top': $offset.top - ($tipHeight + 5),
          'left': $offset.left,
          'padding': '0 5px 5px'              
      });

  },
  function() {
      $('#tooltip').remove();
  }
);

However i am having difficulty centering the tooltip over the element that i am hovering over. I need this to scale to any size element that is hovered.

I appreciate that there are many plugins to achieve this functionality but i wanted to write my own so that the tooltip div would only ever appear in the same place in the code so that it is testable by my tester. This is a requirement from him to make his life easier 🙁

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T23:55:27+00:00Added an answer on May 15, 2026 at 11:55 pm

    If you are using the latest version of jQuery and the jQuery-ui then you can use the position tool to center the tool tip above the element.

    http://jqueryui.com/demos/position/

    Edit in response to authors answer.

    $(".tip_holder").hover(function(){
        var currentTipHolder = $(this);
        var $tipTxt = $(this).text();
        var $tipTitle = $(this).attr('title');
    
        $('#icis_dashboard').prepend('<div id="tooltip">' + $tipTxt + '</div>');
    
        // jQueryUI position
        $('#tooltip').position({
            of: currentTipHolder,
            at: 'center top',
            my: 'center bottom'
        });
    },function() {
        $('#tooltip').remove();
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 499k
  • Answers 499k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer In django, you use order_by(), but for GAE it is… May 16, 2026 at 12:42 pm
  • Editorial Team
    Editorial Team added an answer Those functions are called synchronously. What's most likely happening is… May 16, 2026 at 12:42 pm
  • Editorial Team
    Editorial Team added an answer Found the answer by myself: Open Terminal.app: $ security import… May 16, 2026 at 12:42 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

Writing my own craigslist in .NET, trying to figure out how to create disposable
When writing one's own classes, is it always necessary to override equals(Object o) ?
When writing my own flat file databases I try and keep the file sizes
I am writing my own Joomla component (MVC), its based heavily on the newsflash
I am writing an NServiceBus solution and trying to use DBSubcriptionStorage. This uses NHibernate
I'm raytracing and would like to speed it up via some acceleration structure (kd-tree,
I want to format TimeSpans in C# in this way: xxx day(s) yyy hours(s)
I'm writing an application for a Pocket PC 2003 device. In it there is
I am writing a code that reads data from a http connection and stores
I'm writing some unittests for code written by someone else here at the office.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.