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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T23:24:08+00:00 2026-05-23T23:24:08+00:00

How to create a mootool tooltip with Ajax response.Anybody can please suggest me a

  • 0

How to create a mootool tooltip with Ajax response.Anybody can please suggest me a tutorial for the same.

  • 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-23T23:24:10+00:00Added an answer on May 23, 2026 at 11:24 pm

    What have you tried so far?

    You could do this way btw:

    Set inside your parent tippable elements a data-attribute to store the url (needed to retrieve the tooltip by ajax) i.e.:

    <div class="tippable" data-tipurl="/some/url/">
      when I mouseover here, a tip appears
    </div>
    

    Then, by js, create and cache the tips i.e.:

    $$('div.tippable').each(function(tippable){
    
        tippable.addEvents({
    
            'mouseenter' : function(){
    
                if(!this.retrieve('tip')){ //first time, build tip!
    
                    var tip = new Element('div.tip');
    
                    tip.set('load',{/* options */});
    
                    tip.load(this.get('data-tipurl')); //get through ajax 
    
                    tip.inject(this, 'top').setStyles({ //set tip style
                        position : 'absolute'
                        /* etc... */
                    });
    
                    this.store('tip', tip); //store it inside the parent
    
                }else{ // already built, just show it
    
                    this.retrieve('tip').setStyle('display', 'block');
                }
            },
    
            'mouseleave' : function(){
                var tip = this.retrieve('tip'); //retrieve the tip
    
                if(tip){ //if it's already built, hide it
                   tip.setStyle('display','none'); 
                }
    
                //otherwise, do nothing
            }
    
        });
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm following this tutorial here http://www.kriesi.at/archives/create-a-multilevel-dropdown-menu-with-css-and-improve-it-via-jquery on adding a menu with jquery. I've created
I have been trying to retrieve data via AJAX. I can't seem to be
I was wondering if there was a tutorial somewhere on how to create a
I'm using mootools to create a scrollbar for content example code can be seen
I'm trying to create a small Javascript framework that I can use in my
How can I use the Prototype library and create unobtrusive javascript to inject the
I'm trying to create a javascript framework by myself(so no jquery,mootools... code please) and
create table person ( name varchar(15), attr1 varchar(15), attr2 varchar(1), attr3 char(1), attr4 int
Create a flat text file in c++ around 50 - 100 MB with the
Create a file called Valid[File].txt and stick some text in it. Start powershell and

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.