I've been using empty hrefs (href="#") and allowing a jQuery click event to get the data from my controller and display it in a partial view.

However, I'd like to implement the jQuery Address plugin so the back button can be used. From what I can tell, I need to stop using empty hrefs. (I imagine it's also bad practice to have empty hrefs.)

My new link looks like this.

<a href="/Stop/Details/<%: item.StopID %>">
    <div class="stopId"><%: item.StopID %></div>
</a>

But now instead of my jQuery click event capturing it, I'm getting redirected to /Stop/Details right away, which is not what I want since that's a partial view. How can I fix this?

Edit: I just realized that my title is not accurate to the question. Sorry about that. Will try to think of a more accurate title and change it.

Double edit: Also realized that a div shouldn't be nested in a link.

My click event is actually a live click. It looks something like this:

$(function () {
$(".stopId").live('click', function () {
    var stopId = $(this).html()

        $.post('<%= Url.Action("Details") %>',
    { id: stopd },
    handleSuccess
        );
});
});
link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

You probably want to prevent the default action from happening in your click function for your anchors. This will prevent the browser from following the link when you click it. You didn't post your jQuery click code but it should be something like this:

$('a').click(function(e) { //Edit note the e
    //Your code here
    e.preventDefault(); //This stops the browser from following the link
});

Edit
Actually, after looking at the jQuery address plugin docs, I think you want to make the links look like this: <a href="#/Stop/Details/<%: item.StopID %>"> (Note the #). This may solve your problem as well.

link|improve this answer
Added my click event code to the original post. – Gary the Llama Apr 6 '11 at 18:29
That worked. So much I don't know about jQuery. (I've been slowly going the book "jQuery: Novice to Ninja" but I keep running into issues that I haven't read about yet.) Thank you! – Gary the Llama Apr 6 '11 at 18:35
@Gary the Llama: Glad it helped. If you come across any issues a quick google/StackOverflow search or checking the jQuery api usually helps. :) – Richard Marskell - Drackir Apr 6 '11 at 19:42
feedback

Without seeing your jQuery click-handler, I can't be sure, but have you remembered to use the return false or event.preventDefault:

$('a').click(
    function(){
        // other stuff
        return false;
    });

Or:

$('a').click(
    function(e){
        e.preventDefault;
        // other stuff
    });

References:

link|improve this answer
It's a live('click') event so I don't seem to have access to e.preventDefault. Edit: Chalk that up to intellisense, their website says it's possible. – Gary the Llama Apr 6 '11 at 18:31
You're correct as well, but the other guy beat you by a mere minute. Thanks for the quick response. – Gary the Llama Apr 6 '11 at 18:36
@Gary: no problem at all; glad to have been of, at least some, help. :) – David Thomas Apr 6 '11 at 18:37
feedback

Your Answer

 
or
required, but never shown

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