vote up 1 vote down star

For example, the following selects a division with id="2":

row = $("body").find("#2");

How do I do something like this:

row_id = 5;
row = $("body").find(row_id);

The above syntax produces an error. I checked the jQuery documentation and answers here without success.

flag

Wow, five answers that are exactly the same... – Zifre Apr 13 at 14:48

7 Answers

vote up 4 vote down check
row = $("body").find('#' + row_id);
link|flag
That's it! Thanks! – Tony Apr 13 at 14:25
vote up 11 vote down

Doing $('body').find(); is not necessary when looking up by ID; there is no performance gain.

Please also note that having an ID that starts with a number is not valid HTML:

ID and NAME tokens must begin with a letter ([A-Za-z]) and may be followed by any number of letters, digits ([0-9]), hyphens ("-"), underscores ("_"), colons (":"), and periods (".").

link|flag
Got it. I'm going to look into changing the ID format. – Tony Apr 13 at 15:05
p_1 for standards compliance! – John Rasch Apr 13 at 16:13
vote up 5 vote down

The shortest way would be:

$("#" + row_id)

Limiting the search to the body doesn't have any benefit.

Also, you should consider renaming your ids to something more meaningful, especially if you have another set of data that needs to be named also. You want your ids to be unique, and naming them with only numbers might make that difficult in the future if you have to add another table, list, or any other element.

link|flag
Good point - thanks for clarifying this. – Tony Apr 13 at 15:04
vote up 0 vote down

There are two problems with your code

  1. To find an element by ID you must prefix it with a "#"
  2. You are attempting to pass a Number to the find function when a String is required (passing "#" + 5 would fix this as it would convert the 5 to a "5" first)
link|flag
vote up 2 vote down

Write it like this:

row_id = 5;
row = $("body").find('#'+row_id);
link|flag
vote up 0 vote down

I don't know much about jQuery, but try this:

row_id = "#5";
row = $("body").find(row_id);

Edit: Of course, if the variable is a number, you have to add "#" to the front:

row_id = 5
row = $("body").find("#"+row_id);
link|flag
vote up 5 vote down
row = $("body").find("#" + row_id);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.