I have html-code for beautiful checbox witch:
<div id="cbtestb"></div>
And also javascript code, w want to use in ajax reloading. Why it doesn't work:
$(document).ready(function () {
$('#cbtestb').html('<input type="checkbox" checked="checked" id="cbtest" data-toggle="switch" />');
});
..but works well such code:
$('#cbtestb').html('<input type="checkbox" checked="checked" id="cbtest" data-toggle="switch" />');
$(document).ready(function () {
});
Thank you
You have spelled your selector wrong in the document load example.
$('#cbtestb')
is different than$('#cbtestbs')
If the example outside the document load is working then use that selctor.
Edit
I can confirm that the following code works.