vote up 0 vote down star

Is there an easier/quicker way to get the element added using jQuery append:

How to get the $selectors element:

$container.append('<div class="selectors"></div>');
var $selectors = $('.selectors', $container);

I tried:

var $selectors = $container.append('<div class="selectors"></div>');

but that makes $selectors = $container

Maybe that's the quickest/best way. Just checking.

flag

3 Answers

vote up 4 vote down check

Why not just:

var el = $('<div class="selectors"></div>');
$container.append(el);

?

Then you have access to 'el'.

link|flag
Excellent! Thanks – slolife Sep 18 at 16:40
vote up 1 vote down
$selectors = $('<div/>').addClass('selectors').appendTo($container);
link|flag
Good info, thanks. It is a little verbose for me compared to the other answers, but I wonder if it does better performance wise? Performance is not an issue in my particular situation, but maybe for others. – slolife Sep 18 at 16:42
vote up 4 vote down

This is my favourite way of doing it:

var $selectors = $('<div class="selectors"></div>').appendTo(container);
link|flag
1  
+1 - mine too. Do all you need to do with the newly created element before appending it to the DOM. – Russ Cam Sep 18 at 8:43
This is good too! Thanks – slolife Sep 18 at 16:41

Your Answer

Get an OpenID
or

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