I assume in your answer that you are looking to see if the checkbox was checked and not clicked. It would seem that this is the most logical conclusion from your question. Let me know if this is not true.
Use . is () function
if ($("#Button1").is(":checked")){ alert("Button 1 was clicked"); } if ($("#Button2").is(":checked")){ alert("Button 2 was clicked"); }
source share