jQuery Behaviours

Loading...

Flash Player 9 (or above) is needed to view presentations.
We have detected that you do not have it on your computer. To install it, go here.

1 comments

Comments 1 - 1 of 1 previous next Post a comment

Post a comment
Embed Video
Edit your comment Cancel

Favorites, Groups & Events

jQuery Behaviours - Presentation Transcript

  1. jQuery Behaviours bind, live, livequery Richard Paul, Sep 2009
  2. Unobstrusive Javascript Clean separation of Data (HTML) Style (CSS) Behaviour (Javascript) ... <form id="myForm" onsubmit="doSomething()"> ... </form> ... <script type="text/javascript"> $('#myForm').submit(function() { /* do something */ }); </script>
  3. Javascript Events In Javascript, events bubble up. <body> <div> <button>A button</button> </div> </body> Clicking the button bubbles the event up (button > div > body) However IE doesn't play nice with form events (select, change, submit, reset) , they don't bubble (1). http://www.quirksmode.org/js/events_order.html (1) http://blogs.sun.com/greimer/entry/event_delegation_for_submit_change
  4. Event Delegation Event delegation is the practice of letting events bubble up to a handling node. $('table').click(function(event) { r1c1 r1c2 r1c3 alert(event.target.innerHTML); }); r2c1 r2c2 r2c3 As the target always points to the element the event happened on, clicking on any cell will result in its contents being alerted.
  5. Adding new rows When adding new cells, no extra work is required. Clicking a new row will bubble up to the table's click handler. Demo In practice you would want to check the element is of the correct type/class etc.
  6. Binding Mechanisms in jQuery There are a number of ways of binding behaviour in jQuery bind $('form').bind('submit', function(){}) live $('form').live('submit', function(){}) liveQuery $('form').liveQuery('submit', function(){}) Commonly when using bind you would use the shortcut method: $('form').submit(function(){})
  7. Comparison Grid Event Dynamic IE6 Form Events jQuery Core Delegation bind No No Yes Yes live Yes Yes No Yes liveQuery Yes No Yes No (plugin)
  8. Facebox Use Case Facebox uses jQuery's clone method to copy the required content into its modal dialog. Any behaviours initialised with bind aren't applied to the facebox content.
  9. Facebox with jQuery.live Solution, use jQuery.live to apply behaviours using the event delegation style. $('form').live('submit', function() { // submit form via ajax return false; }); Simple!
  10. What about Internet Exploder? Recall that IE doesn't bubble form events... like submit. Using jQuery.live doesn't work for IE as the event doesn't bubble so the handler is never invoked. http://www.chigarden.com/2007/10/tutorial-making-the-ie-voodoo-doll/
  11. liveQuery We can't use jQuery.bind as the form is dynamically created (by facebox's clone call). Enter liveQuery This plugin adds the handler directly to the form element. No event delegation, and it works in IE6! Demo liveQuery uses some fancy tricks (async binding etc) to keep your website performing.
  12. Comments, queries, suggestions or theories?

+ Richard PaulRichard Paul, 2 months ago

custom

696 views, 0 favs, 2 embeds more stats

A summary of jQueries 'bind', 'live' and 'livequery more

More info about this document

CC Attribution-ShareAlike LicenseCC Attribution-ShareAlike License

Go to text version

  • Total Views 696
    • 649 on SlideShare
    • 47 from embeds
  • Comments 1
  • Favorites 0
  • Downloads 18
Most viewed embeds
  • 46 views on http://www.rapaul.com
  • 1 views on http://74.125.153.132

more

All embeds
  • 46 views on http://www.rapaul.com
  • 1 views on http://74.125.153.132

less

Flagged as inappropriate Flag as inappropriate
Flag as inappropriate

Select your reason for flagging this presentation as inappropriate. If needed, use the feedback form to let us know more details.

Cancel
File a copyright complaint
Having problems? Go to our helpdesk?

Categories