I have a question about the last example on this page: http://api.jquery.com/on/
What is the difference between this:
$( "body" ).on( "click", "p", function() { // p after click
and that?:
$( "body p" ).on( "click", function() { // p after body
After testing myself, i see they behave differently. it seems that the second one does not consider DOM? Thanks!