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

  • SEARCH
  • Home
  • 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

I working with some regular expression matching and I'm trying to figure out how
I installed the "Tooltip Glossary " plugin on a Wordpress site, but after some
I'm working some code that inserts csv rows into an SQLite database using Python.
I've been re-working some code due to a memory leak. The code is part
Working on some tweaks for a build script, I noticed that the output from
Working on some code for a machine problem; we've just started working with pointers,
While working with some sources written in C++ I found those macro: JNIEXPORT return_type
When working with some open source projects (in my case Joomla and Moodle), I've
Whilst working on some generally horrible Javascript code this morning, I came across the
I have some working code with a crutch to add BOM marker to a

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.