Cards preview 1/4
speech
.live() method ?
speech
next
previous
Binds a handler to an event (like click) for all current - and future - matched element. Can also bind custom events - (event delegation).
- only work when used against a selector $('li a') not $('li a', this),
- support: click, dblclick, mousedown, mouseup, mousemove, mouseover, mouseout, keydown, keypress, keyup.
$('p').live ('click', function () {
...
return false;
});