Hi!
I have a table with dynamic data added from JavaScript. This table has a checkbox column, so I need to render the checkboxes using the upgradeElements function.
It's worked with plain JavaScript:
but not work with jQuery though using the same selector.
So, how I can use this function using jQuery?
jQuery doesn鈥檛 return the DOM object but a jQuery object. IIRC, $('...').get() should work.
Also, questions like these belong on StackOverflow with the material-design-lite tag. The GH issue tracker is for bugs, issues and feature requests only.
Thank you, @surma!
Most helpful comment
jQuery doesn鈥檛 return the DOM object but a jQuery object. IIRC,
$('...').get()should work.