Seriously, I could not understand.
I used to always use the jquery load function like this:
$('#db0077').load('/inc/aula.php', function(){
alert('dentro do load');
});
Now this function is deprecated. So I saw that I have to use .on () for this. Using .on () is very simple, I get it in all functions, except that !!! I tried it like this:
$('#db0077').on('load', '/inc/aula.php', function(){
alert('dentro do load');
});
It does not work at all, does anyone give me a light?