Is there a way to fire a click event with a this function
//Control Save
$(document).keydown(function(e){
//CTRL + s keydown combo
e.preventDefault();
if(e.ctrlKey && e.keyCode == 83){
alert("Control S has been pressed!");
}
})
$("#clickSave").click(function(){
yadayadayada
});