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

I have 3 links on a page. All have css class="suggested_product" and an id that is an integer I need to include in the url. I want to override what happens when you click. I have an ajax function that will send some data I am logging to a url, then once that's done redirect the page to the original url. Non-javascript fallback should always go to the original href.

My problem is I haven't found how to get the original url or a#id from inside the click function. The link has an image and a span insde it, and the click event seems to be triggering on those instead of the a tag. I think.

Code that doesn't work:

$(function(){
   $("a.suggested_product").click(function(e){
        e.preventDefault();
        original_url = e.target.href;
        log_url = "http://domain.com/ajax-controller/"+e.target.id;
        ajaxLogSuggestClick(log_url, original_url)
        return;
   });
});

Suggestions?

share|improve this question
What doesn't work? – gdoron Feb 23 '12 at 21:44
Sorry, just edited for clarity. I can't get the href and id from inside the click function – Syntax Error Feb 23 '12 at 21:45

3 Answers

up vote 1 down vote accepted
$(function(){
   $(".suggested_product").click(function(){

        //notice the use of the `var` keyword to keep variables local
        var original_url = this.href,
            log_url      = "http://domain.com/ajax-controller/" + this.id;

        //do the AJAX request to your server-side script
        $.ajax({
            url     : log_url,
            type    : 'get',
            success : function (serverResponse) {
                //successfull callback, forward user to original_url
                window.location = original_url;
            },
            error   : function () {
                //an error occured, you probably just want to forward the user to their destination
                window.location = original_url;
            }
        });

        //returning false inside a jQuery Event Handler is the same as calling `event.preventDefault()` and `event.stopPropagation()`
        return false;
   });
});
share|improve this answer
Ooooh, this looks way better than what I was doing. – Syntax Error Feb 23 '12 at 21:55
@SyntaxError Let me know if I can help explain any part of this code. – Jasper Feb 23 '12 at 21:59
I mostly understand what everything is doing. There are a couple typos though (orininal). My only problem is it's not performing the request on localhost or redirecting or anything. I can alert the url vars after I make them and I'm not getting any errors. Using Chrome BTW – Syntax Error Feb 23 '12 at 22:07
Oh, I think the problem was "window.locaion" – Syntax Error Feb 23 '12 at 22:10
Sorry about that, locaion definitely won't work! – Jasper Feb 23 '12 at 22:12
show 1 more comment

In short, you need to replace

e.target.href;

with

$(this).attr("href");

AND

e.target.id;

with

$(this).attr("id");

share|improve this answer
1  
In even-shorter: this.href and this.id. But why do you think e.target.href and e.target.id won't work? They should... – nnnnnn Feb 23 '12 at 21:45
Why is that necessary? Using the jQuery methods is slower. The id will be the exact same either way and the href will still work but you'll get the entire URL using .href and you'll get the attribute value when using .attr('href') (in this case the user will be redirected to the same place regardless). – Jasper Feb 23 '12 at 21:46
the e var is a handle to the event object.. or something. that's why if you want to prevent the default behaviour on a click event function, you'd say e.preventDefault()... – Ettiene Feb 23 '12 at 21:47
This was the answer - short and sweet. Thank you. I'll accept as soon as the site will let me. – Syntax Error Feb 23 '12 at 21:48
@Ettiene Place this in a jQuery event handler sometime: console.log(e). You'll see that it has a sub-object e.target which is the DOM element on which the event fired. – Jasper Feb 23 '12 at 21:49
show 8 more comments

The link has an image and a span insde it, and the click event seems to be triggering on those instead of the a tag.

Yes, the click on the children will bubble up to the anchor and thus e.target will reference the child element. But jQuery will set this to the element you bound the event on, so:

$(function(){
   $("a.suggested_product").click(function(e){    
      e.preventDefault();
      ajaxLogSuggestClick(this.href, "http://domain.com/ajax-controller/"+this.id)
   });
});

Also, don't create global variables (unless you need them): your original_url and log_url weren't declared with var and so were global. But they were also unnecessary so I've eliminated them in my version of your code.

share|improve this answer
Thanks for the advice about globals. I should know better, but for some reason dealing with javascript makes me forget everything I know about anything ;) – Syntax Error Feb 23 '12 at 22:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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