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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T16:38:00+00:00 2026-06-05T16:38:00+00:00

I have just started on event bubbling in jQuery so my understanding is very

  • 0

I have just started on event bubbling in jQuery so my understanding is very limited. I have a requirement to handle all the events that happen on the html table (grid) row/cells on parent container level. Example:
1. when the user click on a row, I want instead of binding click event to each I bind it to the parent .
2. when user hover over a cell, I want to show the tooltip i.e. need to set the title attribute to the text element of the cell. I need to bubble this event too.

I am able to solve the first part of my requirement. Here is the code for part 1 (jsFiddle added below):

$('#grid').click(function(evt) {
    var row = $(evt.target).parent('tr'); // Get the parent row
    var cell= $(evt.target); //Get the cell
    alert('Row data: ' + row.text());
    alert('Cell data: ' + cell.text());
});

I thought it would be simple to implement hover too. But I am not able to trap the individual cell value. Here is my sample code in fiddle jsFiddle: sample code to bubble the event on cell hover

also, I noticed that I see alert twice on hover. I guess it is raising the event once for the cell and then for the row/table. Not sure?

  • 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-06-05T16:38:03+00:00Added an answer on June 5, 2026 at 4:38 pm

    You can $.on to achieve this like following. As of jQuery 1.7 all calls to .live(), .bind(), ‘.delegate()’ uses .on() under the hood. And .on binds the event only on #grid and intercept the event on that element and then check if the target mactches the second selector. If so then execute the function.

    $('#grid').on('mouseenter','td', function(){
           console.log($(this).text());
       });​
    

    Working Fiddle

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have just started using RSpec and I copied the very simple test on
I have just started to code for Mac OS X and I'm very excited
I have just started with JQuery and I need to change the css class
I have just started with jQuery. I am trying to implement zebra striping in
I have a general function that is supposed to handle any event in the
Hey all. I just started looking into the cocos2d library. I've heard that it's
I have a pretty large project that just recently started crashing on exit. I
we have just started using a git account of our Django website project so
I have just started implementing ISet 's instead of IList 's in my project
I have just started leaning and working on xquery with java. I have 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.