$(function() { var result = $('input[type="checkbox"]'); $('input[type="submit"]').hover(function() { if (result.prop("checked")) $(this).css({ "background": "black" }) }, function() { $(this).css({ "background": "" }) }) });