JSFiddle - React, Tailwind, and code Playground
HTML
<!--
Manually uncheck the checkbox and click clone - in IE10 it fails to copy check state.
-->
<input type="checkbox" checked="checked" id="check1" />
<button id="button" onclick="clone()">Clone</button>
JavaScript
jQuery('#check1').click();
clone = function() {
jQuery('#clone').remove();
var elem = jQuery('#check1' ).clone().attr('id','clone');
jQuery('#check1').after(elem);
}