I have a page where I list my crew members (show_crew.php). The page runs on with infinite scrolling plugin, like Google Images does. At first, I show 10 entries. If the user reaches the bottom of show_crew.php, a new 'show_crew.php' is appended to the old one, showing the next 10 entries.
I heave some Jquery functions embedded in show_crew.php, where I bind events via
$('body').on('click', 'myButton[rel=<? echo $user['id'] ?>]', function() {
console.log('foo');
})
Now, as show_crew.php is appended multiple times, the event is also bound to the same button multiple times. I can fix this problem via $('body').off('click', 'myButton') EACH TIME.
This looks ugly. Is there a more elegant way?
thanks, matt
$('.myButton').click(function() { console.log('foo'); });? -- You might want to work on your accept rate. – Smamatti Sep 19 '12 at 14:07