How to call specific jquery with an anchored link? With code below i can't call jquery which i need, instead i call some other script.
$('#someId a').click(function () {
$('body,html').animate({
scrollTop: 0}, 800);
return false;
}); // some code here...
And anchored link:
<p id="someId"><a href="#link">link</a></p>
This link when pressed should take me on some div on the page (this one goes on top), but instead of that, it call some other script. Firebug console says it call this:
this.on('click',function(e){ //some code here...
That other script is working just fine and i wouldn't mess up more then i allready did. Now, how to set all this that when i click on that link i call jquery i need? I tried to put id inside anchor tags, and some other suggestion but i just hit the wall.
Edit: Fixed. I am not sure what is unclear. I have a problem to call script from above. No matter it have proper ID it still call wrong script. The other javascript code is not important, i believe. If it is still needed i will provide it here.