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.
|
|
I am creating an element with document.createElement(). Now how can I pass it to a function that only takes a Jquery object?
I can not use it, as the element has not been rendered in the page yet.
|
|||
|
|
|
|
|
||
|
|
|
What about constructing the element using jQuery? e.g.
creates a new div element, ready to be added to the page. Can be shortened further to
then you can chain on commands that you need, set up event handlers and append it to the DOM. For example
|
|||
|