I would like to be able to trigger an alert box when the user presses ALT+v.
Using a function similar to this:
$(document).ready(function() {
$("body").keypress(function(event) {
if (event.which == alt+v) {
alert('text to display in alert box');
}
});
});