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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T16:10:43+00:00 2026-06-01T16:10:43+00:00

How do I get the string ‘unenable-item’ assuming that it is used as part

  • 0

How do I get the string ‘unenable-item’ assuming that it is used as part of the string in a selector such as:

$('.unenable-item').click(function(){
  alert($(this).val());
});

thx

  • 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-01T16:10:45+00:00Added an answer on June 1, 2026 at 4:10 pm
    $('.unenable-item').click(function(){
      alert($(this).attr("class"));
    });
    

    Or more generic way

    $('.unenable-item').click(function(){
      alert($('.unenable-item').selector);
    });
    

    In this case you will get .unenable-item and you must work with that string and get substring that you want.

    EDIT:

    .selector property can’t work with $(this) and will return always empty string, because it making new object every time. So I find solution to work with that. The solution is to make new function for binding events and use that function instead of simple jquery functions.

    Usage

    jQuery.fn.addEvent = function(type, handler) {
        this.bind(type, {'selector': this.selector}, handler);
    };
    

    And after this you can simply get your selector

    $('.unenable-item').addEvent('click', function(event) {
            alert(event.data.selector);
    });
    

    Note, that I used addEvent method for binding click, instead of immediately binding by Jquery’s click function.

    You can see example in jsfiddle http://jsfiddle.net/DFh7z/21/

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

Sidebar

Related Questions

How can i get the string within a parenthesis with a custom function? e.x.
JOptionPane can be used to get string inputs from user, but in my case,
I'm using Lua, already used Google and nothing, can't find way to get string
I get string like main.c:11: error: 'qz' undeclared (first use in this function) like
I need to get string with 8 '*' symbols. How can I do that
My Java code must get string HH:MM from console and needs to operate with
I need to get string array or list with ajax and Action, this is
I try to get string from this url: http://autoc.finance.yahoo.com/autoc?query=google&callback=YAHOO.Finance.SymbolSuggest.ssCallback When I look at this
I'm already thinking about to start using simple GET string. Or I'm not so
I have the following string fromat: session=11;reserID=1000001 How to get string array of number?

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.