$(document).ready(function() {
if ( // condition ) {
//do stuff
}
else ( // how do you jump to another separate function from this else statement? ) {};
});
for example: I have another function (jump). and I want to run the function after else statement and I dont want it inside the previous code.
function jump(e) {
// blah blah
};