Is there an simple example of how to create an event in javascript and listen for it?

Trying to create a Complete event, similar to the ajaxComplete. Want other stuff on the page to show messages when Complete event is fired.

link|improve this question

55% accept rate
4  
Don't use bind - use on (or delegate for older jQuery versions) – Adam Rackis Dec 16 '11 at 15:50
feedback

1 Answer

//create a hanlder:
$('.myselector, .myDue').on('myEvent',function(){
  alert('custom event fired');
});

//trigger the event a few ways:
$('.myselector').trigger('myEvent');

$('.myselector').click(function(){
    $(this).trigger('myEvent');
});

function hitTheTrigger(whatwashit){
   $(whatwashit).trigger('myEvent');
}

hitTheTrigger('.myDue');
hitTheTrigger('.myselector');

test it out here:http://jsfiddle.net/MarkSchultheiss/rTNTg/

link|improve this answer
+1 but I think you meant $(document).on('myEvent', '.myselector, .myDue', function(){ – Adam Rackis Dec 16 '11 at 15:59
Getting error wiht answer and comment. ".on" is not a function and the answer above said it was missing an ")" something about the argument list. – user295734 Dec 16 '11 at 16:05
oops, there was a syntax error of . instead of , in the event handler. NOTE: uses jQuery – Mark Schultheiss Dec 16 '11 at 17:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.