vote up 6 vote down star
4

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?

flag

2 Answers

vote up 4 vote down check

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|flag
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 :) – Hojou Dec 30 '08 at 12:09
vote up 1 vote down

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|flag
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... – Hojou Dec 30 '08 at 10:01

Your Answer

Get an OpenID
or

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