if ($("#piramida").is(":checked")) { // делаем действия если checked }
<input id='piramida' type="checkbox"> <button>Проверить!</button> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js"></script> <script> $("button").on("click", function () { if ($("#piramida").is(":checked")) { alert("checked!") } else { alert("unchecked!") } }); </script>