Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
3  
Your question is unclear. Please re-word it and add the relevant code so we can help you. – j08691 Jan 27 at 17:54
have you tried using $('#someId a').click(function () { return false; }); ??? – Alex Jan 27 at 17:54
Your question is unclear. But from the code snippet that you shared you are trying to scroll the page twice. When the user will click on the anchor it will locate the element with id "link" and scroll the page to that. Plus if the script runs fine it would scroll the page to the top. Please explain what you want to do and what is currently happening. – Jehanzeb.Malik Jan 27 at 18:24
According Firebug, when i click a link i provide, i don't call jquery from above. Instead, i call OTHER script which has nothing to do with this case. That is written above. – dekip Jan 27 at 20:59

closed as not a real question by undefined, Praveen Kumar, RolandoMySQLDBA, ElYusubov, MCKapur Jan 28 at 1:24

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Since your question is unclear, I have two answers for you...


Wrap the specific jQuery inside a function and call that function. What I understood was, you have a reusable function defined for an event handler, and you wanna use it in another function.

$('#someId a').click(function () { /* Code A */ });

And this Code A needs to be called in another function, if that's the case, you need to define this way:

function codeA() { /* Code A */ }

And then,

$('#someId a').click(function () { codeA(); });

If you say that, upon clicking on the link, it goes to a specified div with the ID as the hash, then you need to add this:

$('#someId a').click(function () {
    ...
    ...
    ...
    return false;
});

Or, in a better way:

$('#someId a').click(function (e) {
    ...
    ...
    ...
    e.stopPropagation();
});

This will prevent the browser from following the link.

share|improve this answer
I just edited my code. – dekip Jan 27 at 18:06
@dekip Now it is totally unclear! :( – Praveen Kumar Jan 27 at 18:09

Not the answer you're looking for? Browse other questions tagged or ask your own question.