Click functions - making stuff happen
Binding CLICK events
Run
Clear
- Adding (or binding) a click
- unbinding the click
- Changing the click
- another way of binding the click
- THIS - accessing the information of the thing you clicked
- Another reason to use return false
- Another way to prevent the default click action
Methods used
- .click http://api.jquery.com/click/
- .bind http://api.jquery.com/bind/
- .unbind http://api.jquery.com/unbind/
- .preventDefault http://api.jquery.com/event.preventDefault/
- this (lots of info, I like this one: ) http://remysharp.com/2007/04/12/jquerys-this-demystified/