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 the following:

    <li><a id="register" 
        class="access button red"
        data-action="Register" 
        title="Login"><span class="smaller">REGISTER</span></a></li>
    <li><a id="login" 
        class="access button red"
        data-action="Login" 
        title="Login"><span class="smaller">LOGIN</span></a></li>

Is there an easy way in jQuery that I could make the clicking of one of these links call a javascript function and pass in the data-action as an argument. I put in the class called "access" as I think I could use this to pick out these two links but then I am not sure what to do next.

share|improve this question

4 Answers

up vote 1 down vote accepted
​$('a.access')​.click(function() {
    console.log($(this).data('action'));
});​

http://jsfiddle.net/zerkms/EWSCJ/

So within event handler you have this as a DOM-object, or $(this) as a jQuery object. So you can use .data() jQuery method to retrieve data-action value

share|improve this answer

one line

$("a.access").click(function(){ doSomeThing($(this).attr("data-action"))  })
share|improve this answer

Yes, absolutely. Just do something like this:

var callback = function() {
  var $el = $(this);
  alert($el.data('action'));
};​

$('#login').click(callback)
share|improve this answer

You can use one of following samples, event.preventDefault(); will stop navigating to the hyperlink.

$("a.access").click(function(event) {
    event.preventDefault();
    customFunction($(this).attr("data-action"));
});

or

$("a.access").click(function(event) {
    event.preventDefault();
    customFunction($(this).data("action"));
});​
share|improve this answer

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.