I want to achieve to pass a parameter to a function with an event handler.
What i'm trying to achieve is something like this
$('#Form').submit(save(parameter));
function save(event, parameter){
event.preventDefault();
}
In which way should i make it?