The correct way to check checkbox on the DOM elements can be done using jQuery .prop or .attr method.
By using JavaScript’s “checked” property, we can solve the problem directly, instead of manipulating the DOM into doing what we want it to do.
After jQuery version 1.6 you can use:
$('.chkID').prop('checked', true); $('.chkID').prop('checked', false); And jQuery version 1.5x and below you can use:
$('.chkID').attr('checked', true); $('.chkID').attr('checked', false); Read: jQuery Checkbox checked property
This plugin will alter the checked property of any DOM elements selected by jQuery, and successfully check or uncheck checkboxes under all circumstances.
In today’s fast-paced and highly competitive marketing environment, even the most creative campaign is only…
We are NYC moving firm. Are you planning a flat move? Maybe a distance or…
Mobile devices, unlike desktops and laptops, can not be handled by dozens or hundreds of…
Augmented Reality- An immersive experience for the learners! Learning and education aren’t the same as…
On special days like birthdays and weddings, we all like to celebrate our loved ones…
A web application is different from a regular mobile or desktop application as it runs…