up vote 57 down vote favorite
29
share [g+] share [fb]

I'm looking for some input on how to implement custom eventhandling in jquery the best way. I know how to hook up events from the dom elements like 'click' etc, but I'm building a tiny javascript library/plugin to handle some preview functionality.

I've got a script running to update some text in a dom element from a set of rules and data/user input I got, but now I need that same text shown in other elements that this script can't possibly know of. What I need is a good pattern to somehow observe this script producing the needed text.

So how do I do this? Did I overlook some builtin functionality in jquery to raise/handle user events or do I need some jquery plugin to do it? What do you think is the best way/plugin to handle this?

link|improve this question

1  
There is another framework, knockoutjs.com that can actually solve my old problem, if anyone looking at this question needs it. – Per Hornshøj-Schierbeck May 11 '11 at 9:14
feedback

5 Answers

up vote 38 down vote accepted

take a look at this

Trigger and Bind What is exciting though (or at least what is exciting me) is the method by which the status gets relayed through the application. I’ve stumbled upon a largely un-discussed method of implementing a pub/sub system using jQuery’s trigger and bind methods.

link|improve this answer
Excatly what i was looking for. He is probably right that it's the way to go, but i can't help thinking jquery need either direct support or a plugin to handle it more gracefully. I'll wait a bit and see if there are other takes on the problem before i flag an answer :) – Per Hornshøj-Schierbeck Dec 30 '08 at 12:09
feedback

From: http://www.reynoldsftw.com/2009/04/custom-events-in-jquery-open-doors-to-complex-behaviors/

A quick recap of .bind() and .trigger()

$('body').bind('foo', { 'bar' : 'bam' }, function(e) { alert(e.data.bar); });
$('body').trigger('foo'); // alerts 'bam'

You can also pass params

$('body').bind('foo', function(e, param1, param2) { alert(param1 + ': ' + param2); });
$('body').trigger('foo', [ 'bar', 'bam' ]); // alerts 'bar: bam'
link|improve this answer
Note that the second argument to trigger can be anything, not just an array of values. You can also use a single value or an object as a data argument. – Husky Jul 6 '11 at 18:53
feedback

I had a similar question, but was actually looking for a different answer; I'm looking to create a custom bind event. For example instead of always saying this:

$('#myInput').keydown(function(ev) {
    if (ev.which == 13) {
        ev.preventDefault();
        // Do some stuff that handles the enter key
    }
});

I want to abbreviate it to this:

$('#myInput').enterKey(function() {
    // Do some stuff that handles the enter key
});

trigger and bind don't tell the whole story - this is a JQuery plugin. http://docs.jquery.com/Plugins/Authoring

The "enterKey" function gets attached as a property to jQuery.fn - this is the code required:

(function($){
    $.fn.enterKey = function(handler) {
        return this.keydown(function(ev) {
        if (ev.which == 13)
                handler(ev);
        });
    };
})(jQuery);
link|improve this answer
The other nicety of the above is you can handle keyboard input gracefully on link listeners like: $('a.button').bind('click enterKey', function(ev) { ev.preventDefault(); ... }); – Chris Moschini Apr 19 '11 at 0:15
feedback

I think so.. it's possible to 'bind' custom events, like(from: http://docs.jquery.com/Events/bind#typedatafn):

 $("p").bind("myCustomEvent", function(e, myName, myValue){
      $(this).text(myName + ", hi there!");
      $("span").stop().css("opacity", 1)
               .text("myName = " + myName)
               .fadeIn(30).fadeOut(1000);
    });
    $("button").click(function () {
      $("p").trigger("myCustomEvent", [ "John" ]);
    });
link|improve this answer
I'm looking for a way to raise an event and have subscribers/listeners trigger on it. Not trigger it manually since the raising object doesn't know who are listening... – Per Hornshøj-Schierbeck Dec 30 '08 at 10:01
feedback

You can check the jQuery doucmentation about the Event Object. Here it is the link:

http://api.jquery.com/category/events/event-object/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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