How can I call prepend on a div's id and class? I was thinking I can do something like this:

$('#id .class').prepend('Text');
link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

If you're trying to select a single element with an id of ID Use a comma to separate the selectors:

$('#ID,.class').prepend('Text');

If you're trying to select a div with an id of ID and class of class then remove the space between the two:

$('#ID.class').prepend('Text');

Although this second method is rather redundant since IDs need to be unique to a single element in the document.

link|improve this answer
Thanks, but for some reason it isn't grabbing a div with the ID and Class, it is still just looking at class. So every div with the same class is getting the prepend. Weird huh? – drummer392 Oct 14 '11 at 23:08
Okay, so to correct your code Clive, it is just #ID.class with not comma. I don't know why I didn't remember that. – drummer392 Oct 14 '11 at 23:12
@drummer392: Updated in the answer above, is that what you're looking for? – Clive Oct 14 '11 at 23:15
@drummer392: You beat me to it :-) – Clive Oct 14 '11 at 23:16
It should work perfectly fine with the comma notation as well. What version of Jquery are you using? – Stanislav Palatnik Oct 14 '11 at 23:16
show 3 more comments
feedback

Try this:

$(".class, #ID").prepend('Text');

Edit: While trying it I see a similar answer was posted and doesn't seem to work. It should work. The issue must lie somewhere else in your program logic.

Try comparing $('.class') with $('#ID') in Firebug

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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