Last Updated: February 25, 2016
·
423
· cycododge

jQuery Binding

Always use all 3 parameters when binding events so you can target non-existent elements as well.

$('.container').on('click','.child',function(){
    console.log('clicked!');
});

Make sure your selector exists first though!