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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T01:31:35+00:00 2026-05-20T01:31:35+00:00

var e = jQuery.Event(onmouseover); e.attr(id); I want to get id of this element but

  • 0
var e = jQuery.Event("onmouseover");
e.attr("id");

I want to get id of this element but it does not work. e returns object.

  • 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-20T01:31:36+00:00Added an answer on May 20, 2026 at 1:31 am

    I don’t think jQuery.Event, which creates a new event object to be passed around to the elements, does what you want.

    I think you only want to get the ID of certain elements when the mouse passes over them? If so, and the elements have a common class name, then do:

    $('.someClassName').mouseover() {
       alert(this.id);
    });
    

    If they are all of the same tag, e.g. <p>, then do something like:

    $('tag').mouseover() {
       alert(this.id);
    });
    

    If you want to do this for all elements on the page (not recommended, usually you can narrow it down):

    $(document).delegate('*', 'mouseover', function (e) {
       if (this == e.target) alert(this.id);
    });
    

    You may want to read more about jQuery selectors to get to the elements that you want.

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

Sidebar

Related Questions

Suppose I have this jQuery code. $(document).delegate('a[title]', 'click', function(event) { var txt = //
I have declared this variable in jquery var enabled = false; I want to
In jquery an event hadler's binding is the event generating DOM element (this points
function barvaInfo(event) { $(document).ready(function(){ var nid = window.event.srcElement.id; } this works in IE but
I already started this in javascript so I don't want to use jquery but
I want to call the javascript function using mousehover jQuery event. Here is the
I am trying to convert this code from Protoytpe to JQuery: Event.observe(window, 'load', init,
Correct me if I am wrong, but seems to me jQuery event handling is
I've downloaded a JQuery plugin for a mousehold event. http://remysharp.com/2006/12/15/jquery-mousehold-event/ I have this div
I want to pass some dynamic paramters to jquery onClick event. Before, I used

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.