I can never get this right - how to avoid multiple occurrences on an object. For instance, I have this function where you can click a link (go to the top), then the document will be scrolled up to the top.
this.scrollTop = function(){
$('a[href=#top]').live('click',function(){
alert('1');
$('html, body').animate({scrollTop:0}, 'slow');
return false;
});
}
The problem is I have an ajax page to be loaded into the same page, and the ajax page has another link (go to the top) as well, so I have to attach that scrollTop function again after the ajax call.
Then the existing link (go to the top) will occur twice when I check with the alert - how can I fix it?
Thanks.
EDIT:
- the scrolltop plugin.
- the plugin to load an ajax page.
- the live example.
If you click the first test thumbnail image on the left to load the ajax page, then you go to the bottom of the document to click go to the top, then you see it alert twice or more depends how many times you call the ajax page.