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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T05:10:06+00:00 2026-05-28T05:10:06+00:00

This is a very similar question to Backbone not binding events to jQuery Popover

  • 0

This is a very similar question to Backbone not binding events to jQuery Popover – however the answer does not seem to meet my needs.

I wish to bind a (twitter bootstrap) popover to one of my views, but not sure how I am supposed to do it?

events : {      
    "hover .info" : "showDetails",      
},
render : function(){        
    var content = this.template.tmpl(this.model.toJSON());
    $(this.el).html(content);       
    return this;
},
showDetails : function() {

    this.$(".info").popover({title: 'Hello', content: 'World'});    
    this.$(".info").popover('show');        
    console.log(this.model.get('description'));
},

My template looks like

<script type="text/template" id="item-template">
  <div class="well listitem" style="padding: 14px 19px;">
    <div class="row show-grid" title="Irregular three column layout">
      <div class="span6">${heading}</div>
      <div class="span1">${price}</div>
      <div class="span1"><button class="btn info">Details</button></div>        
    </div>
  </div>
</script>

So I am trying to show some text in the popover when the mouse enters the button and vanish when mouse leaves – however on mouse over

  1. The popover appears with undefined as the heading
  2. On mouse out it stays in position.

I think I am not binding properly but would be great if someone could see my mistake.

  • 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-28T05:10:07+00:00Added an answer on May 28, 2026 at 5:10 am

    The problem is that the Jquery hover event needs two callback functions, one for mouseenter and one mouseleave. In your case you pass only one function that will call on mouseenter and open your popover. From the jquery docs:

    Calling $(selector).hover(handlerIn, handlerOut) is shorthand for:
    $(selector).mouseenter(handlerIn).mouseleave(handlerOut);

    So change your code like this will fix your second problem:

    events : {      
        "mouseenter .info" : "showDetails", 
        "mouseleave .info" : "hideDetails"     
    },
    render : function(){        
        var content = this.template.tmpl(this.model.toJSON());
        $(this.el).html(content);       
        return this;
    },
    showDetails : function() {
    
        this.$(".info").popover({title: 'Hello', content: 'World'});    
        this.$(".info").popover('show');        
        console.log(this.model.get('description'));
    },
    hideDetails : function() {
        this.$(".info").popover('hide');   
    },
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is very similar to this question , but it's not working for me.
I've asked a very similar question before, but this time is not about VB
This is very similar to this question ( link ), but I'm not quite
Note: There's a very similar question , but it's WPF-specific; this one is not.
This is a very similar question to this SO thread on middleware and views
My question popped up a very similar question, this one . But the accepted
This is very similar to another recent question: How can I return the current
This is very similar to a previous question (and may be the exact same
I know that this question is very similar to the question posted here .
This question is very similar to an earlier question I asked ( This Question

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.