If I had an element such as
<div class='some_class' onclick='executeF(this)'/>
would this be equivalent to:
$('.some_class').on('click',function(e){
executeF(this);
});
or
$('.some_class').on('click',function(e){
executeF(e);
});
or
$('.some_class').on('click',function(e){
executeF($(this));
});
I don't have the means to test this at the moment so I just wanted to make sure what would be the direct correspondent jquery method before going further on my coding since (again) I can't test this right now