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');
|
feedback
|
|
If you're trying to select a single element with an id of
If you're trying to select a div with an id of
Although this second method is rather redundant since IDs need to be unique to a single element in the document. | |||||||||||
feedback
|
|
Try this:
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 | ||||
|
feedback
|