I am trying to have a button that can use keyboard shortcuts. With the button below I would like to be able to push "ALT + R" to use the button. But what is happening is if you push either ALT or R it runs when I want it to only run if they are pressed together.
$(document).bind('keydown', 'alt+r', function() {
alert("Works");
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<button type="button" class="btn btn-default" id="Report">REPORT</button>