vote up 1 vote down star
1

Dear Stackoverflow;

Can you provide some good reading material on event-bubbling, especially in regards to the Yahoo User-Interface libraries (YUI) ?

flag

3  
developer.yahoo.com/yui/event – OMG Ponies Jul 28 at 14:54

2 Answers

vote up 2 vote down check

Maybe not exactly what you're looking for, but Christian Heilmann (Developer Evangelist at Yahoo) has written some awesome stuff on event delegation using event bubbling and YUI.

link|flag
vote up 0 vote down

Even-bubbling should not be a big issue. Container handles those events raised by child controls.

<script type="text/javascript">
  function doit() {
     alert("something...");
  }
</script>
<div onclick="doit()">
  <input type="button" value="one"/>
  <input type="button" value="two"/>
</div>
link|flag

Your Answer

Get an OpenID
or

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