im using a popup box when i click a link
which is
$(”#search”).click(function(e) {
but i also want to create a shortcut
$.jQee(‘shift+s’, function(e) {
(shift+s) will open the box, is their anyway to combine them into 1 statement, so i dont have to copy the same function?


