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 4103192
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T20:55:36+00:00 2026-05-20T20:55:36+00:00

I am re-working some tooltip functionality on my site. Am experimenting with the Revealing

  • 0

I am re-working some tooltip functionality on my site.

Am experimenting with the Revealing module pattern as laid out here:

http://www.addyosmani.com/resources/essentialjsdesignpatterns/book/#designpatternsjavascript

As a quick test i tried this:

var tooltip = function(){

    var foobar = 'foo and bar';

    function getAlerter(){
        return alert(foobar);
    }

    return{
        alerter: getAlerter
    }

}();

tooltip.alerter();

Which alerts ‘foo and bar’ as expected.

However, i need to pass the element that triggered the tooltip functionality like so:

var tooltip = function(elem){

    var trigger = elem;

    function getAlerter(){
        return alert(trigger);
    }

    return{
        alerter: getAlerter
    }

}();

tooltip.alerter('.trigger');

But this returns undefined. Am not sure why 🙁

  • 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-20T20:55:37+00:00Added an answer on May 20, 2026 at 8:55 pm

    It’s because you are using immediately executing function (() at the end of your ‘module’), and at the moment when your function is declared and executed no value is passed.

    You could tell your getAlerter function to accept additional parameter:

    function getAlerter(trigger){
       // your getter code...
    }
    

    but it questions the whole idea behind your pattern.
    If you want to invoke your module with an element assigned, you most likely should end up with something like this:

    var tooltip = function(elem){
        // your whole module code...
    }('.trigger');
    

    or, if you want multiple instances, remove the () at the end of your ‘module’, and run it like this:

    var myTooltip = tooltip('.alerter');
    myTooltip.alerter();
    

    if you want to keep it as a single instance, you could easily add init method:

    var tooltip = function(elem){
    
        var trigger;
    
        function getAlerter(){
            return alert(trigger);
        };
    
        function init(elem) {
            trigger = elem;
        }
        return{
            alerter: getAlerter,
            init: init
        }
    }();
    

    and run it like this:

    tooltip.init('.alerter');
    tooltip.alerter();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In a fairly simple web page, some tooltip-like text appears when hovering over some
My problem is related to using the JQuery Tools Tooltip Plugin ( http://flowplayer.org/tools/tooltip.html )
Working on a request to add a pretty tooltip to a page (using jQuery
I want to display some properties of a (custom) Label in its Tooltip, but
I've just been experimenting with a CSS tooltip that fades in with CSS3's transitions.
I basically am storing some data in the title attribute of some divs that
I have a simple CSS help popup that's been working well for me in
We're having some trouble with including javascript in masterpages. The ~/ root shortcut doesn't
I need to add some css to a class. This is what I have
In the application that I am working on, there is tabular data (for the

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.