How to remove checkbox from div using jQuery?
2 Answers
You can also use animation, like fadeOut. It turns your page being more pleasent
$("#myDiv :checkbox").fadeOut('slow');
API Documentation
You can also use animation, like fadeOut. It turns your page being more pleasent
$("#myDiv :checkbox").fadeOut('slow');
API Documentation