--- layout: default javascript: | console.log('yolo'); $(function(){ $("#tooltip").popover({ placement: 'bottom', title: 'annotation', html: true, content: $('#annotation-control').html() }); $("#tooltip2").popover({ placement: 'bottom', title: 'annotation', html: true, content: $('#annotation-control-2').html() }); $('.metacategory').change(function(e){ console.log(e); }); }); ---