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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T09:31:26+00:00 2026-06-06T09:31:26+00:00

is it possible in jquery to get the value .attr() of (this) object? an

  • 0

is it possible in jquery to get the value .attr() of (this) object?

an alert(this) returns true[object HTMLInputElement] so the == wont work

  $("#tag1, #tag2").keyup(function(event){
         if(this == "#tag1"){
            alert("This is tag1");
            };
         if(this == "#tag2"){
            alert("This is tag1");
                };      

thx
Art

  • 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-06T09:31:29+00:00Added an answer on June 6, 2026 at 9:31 am

    It is not possible to get the selector that caused the current element to be matched – there are many possible selectors for a given element. While it would be theoretically possible if the jQuery object created by $("#tag1, #tag2") was still available, it would be incredibly ugly.

    However, you can simply use this.id to access the element’s ID ('tag1' or 'tag2' in your case) and use it in your code:

    $("#tag1, #tag2").keyup(function(event) {
        if(this.id == "tag1") {
            alert("This is tag1");
        }
        if(this.id == "tag2") {
            alert("This is tag1");
        }
    });
    

    If there is no common code at all for the two elements it’s much better to use two selectors and functions instead of putting everything in a single function.

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

Sidebar

Related Questions

JavaScript/JQuery var arr=[]; $('.element').each(function(i) { arr.push({id:i,value:$(this).attr('data-value')}); }); $.get('/json.php?arr='+arr,function(result) { alert(result); }); PHP <?php $j
Is it possible to get a particular value out of viewstate using JQuery.... I'm
This is a really simple question. Is it possible for jQuery to get an
Possible Duplicate: jQuery get input value after keypress I'm trying to get an input
Is it possible to get the value of the handle of a jQuery UI
Possible Duplicate: how to get the value of a textarea in jquery? I have
Possible Duplicate: How do I get the value of a textbox using jQuery? on
Possible Duplicate: get querystring with jQuery How do I get the value of a
Possible Duplicate: How to get all of the IDs with jQuery? How can i
Is it possible to get all div's within a page using jQuery including nested

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.