vote up 4 vote down star

I am creating an element with document.createElement(). Now how can I pass it to a function that only takes a Jquery object?

$("#id")

I can not use it, as the element has not been rendered in the page yet.

flag

68% accept rate

2 Answers

vote up 11 vote down check
var elm = document.createElememnt("div");
var jelm = $(elm);
link|flag
This works because jquery will take not only a string selector, but an existing jquery object, or any valid dom object as an argument to the main $() query function. – Samuel Meacham Nov 16 at 20:54
vote up 5 vote down

What about constructing the element using jQuery? e.g.

$("<div></div>")

creates a new div element, ready to be added to the page. Can be shortened further to

$("<div>")

then you can chain on commands that you need, set up event handlers and append it to the DOM. For example

$('<div id="myid">Div Content</div>')
    .bind('click', function(e) { /* event handler here */ })
    .appendTo('#myOtherDiv');
link|flag
actually i am getting the element from somewhere where i cant change the code – Tanmoy Jul 9 at 16:54

Your Answer

Get an OpenID
or

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