In Internet Explorer (any version) if you click twice fast a checkbox it changes only once. Another browsers don\'t do this.
This is \"by design\" or a very strange beha
The below code works for me:
var temp;
function toggleGetSelected(e){
if(e){
// Below is the if condition which handles the double click
if(e.checked==true && temp==e.value ){
e.checked=false;
}
// ends double click handle
if(e.checked==true){
temp=e.value;
// your code here
}
else{
temp=null;
// your code here
}
}
}