document.body.addEventListener('test_event', function (e) {
console.log('js test_event');
}, false);
$(function(){
$('body').on('test_event', function(event, goal){
console.log('jquery test_event');
});
$('body').trigger('test_event');
});
var event = new Event('test_event');
document.body.dispatchEvent(event);
/*
В консоли
jquery test_event
js test_event
jquery test_event
*/