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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T15:13:08+00:00 2026-05-23T15:13:08+00:00

I’m new to jQuery (1.5 months) and I’ve found myself developing a PHP +

  • 0

I’m new to jQuery (1.5 months) and I’ve found myself developing a PHP + jQuery habit that I don’t particularly like. I’m wondering if anyone has suggestions to make things more elegant. Consider the following HTML that I’ve generated by performing a simple SQL query and echoed with PHP:

<div id='boat_1' class='boat speedboat'></div>    
<div id='boat_2' class='boat dory'></div>
<div id='car_1' class='car racecar'></div>
<div id='car_2' class='car racecar'></div>

As you can see, I’ve opted for an id naming convention that follows {type}_{id}. Now, in jQuery, Assume I want to bind a click handler to these car divs. Remembering that they are dynamic and there could be any number of them, I’d perform:

$(".car").bind('click', function(){
//do something
});

But typically, that //do something would like to know which car fired the click event. Furthermore, that //do something will probably need to seperate the type (boat or car) and the id to perform a POST operation and write back to the database…(for example)

What I’m doing now to find the id (and other unique information as I need it) is simple, but to me, it smells:

$(".car").bind(function(){
var id = $(this).attr("id").replace("car_", "");
});

One might suggest to use the class attribute instead because you don’t have to worry about uniqueness. But because class names are not singular (there can be more than one per element as I’ve shown), I don’t see this as a candidate solution.

Because id’s must be unique in the entire document, this is the solution I’ve settled for. I’m aware getElementById() would break if multiple ids of the same name were made possible but sometimes I wonder if it would be beneficial if ids didn’t have to be unique provided they have different parents.

How do you do it?

Should I use HTML5’s data-*?

Thanks!

  • 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-23T15:13:09+00:00Added an answer on May 23, 2026 at 3:13 pm

    Yes.

    Render HTML like this:

    <div data-id="1" class="boat speedboat"></div>    
    <div data-id="2" class="boat dory"></div>
    <div data-id="1" class="car racecar"></div>
    <div data-id="2" class="car racecar"></div>
    

    Jquery handler

    $(".car").bind(function(){
        var $this=$(this);
        var id = $this.data("id");
    });
    

    Jquery Data function

    As of jQuery 1.4.3 HTML 5 data- attributes will be automatically pulled in to jQuery’s data object. The treatment of attributes with embedded dashes was changed in jQuery 1.6 to conform to the W3C HTML5 specification.

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

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I would like to count the length of a string with PHP. The string
I've got a string that has curly quotes in it. I'd like to replace
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I'm trying to create an if statement in PHP that prevents a single post
I have a jquery bug and I've been looking for hours now, I can't
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I want to count how many characters a certain string has in PHP, but

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.