Hi All I was trying to use append to put the block content onto bottom of body and show with absolute position, but when display it my input checkbox becoming non clickable on on FF. Has anyone faced this kind of issue ?
Thanks
js:
var box = $('#subbox');
box.css('top', 200);
box.css('left', 300);
$(document.body).append(box);
HTML:
<div id="Subbox" class="subbox">
<input type="checkbox" checked="checked">
</div>
css:
.subbox {
position:absolute !important;
z-index: 5 !important;
background-color: #eee;
padding: 5px;
margin:0px;
margin-top:0px;
border:1px solid #ccc;
}