god day, I want to ask a question about the jQuery where it is possible to execute more than one event at the same time without waiting for the other process
as example :
<input type="button" id="btnSave" />
<script>
    $('#btnSave').click(function () {
        //... Do something
    });
    $('#btnSave').click(function () {
        //... Do something else
    });
</script>
 
    