vote up 0 vote down star

Currently I'm using something like:

$('.myclass').click(function(){  
    var msg = $(this).attr('id');  
    alert(msg)
});

And HTML:

< a href="#" class="myclass" id="101">Link</a>

If I need additional parameters how would I read them? Also is the current way I am using the proper way? Originally I was using hidden input fields so it was already a step up. :p

flag

50% accept rate
It's considered bad convention to start an id with a number, but if you're not using it as an id, then it's probably ok - last time I checked, Firefox won't recognize an id that starts with a number. – fudgey Oct 9 at 1:27
yes, that is correct fudgey... don't start your ids w/a number, but the idea in my answer is still the same. – Jason Oct 9 at 17:22

3 Answers

vote up 0 vote down

you can use bind() and send additional data to the event handler as event.data

link|flag
vote up 0 vote down

jQuery Events

$('.myclass').bind("click", { Param1: "", Param2: 2 }, function(event){
    alert(event.data.Param2);
});
link|flag
Would that mean I'd have to include this function on the same page? Currently all my js stuff is in a separate file. – Roger Oct 9 at 0:33
vote up 1 vote down

this may not be the best method, but something i have done is to hyphen delineate the id attribute with other params, like id="101-red-420582" which all three mean different things and can be easily broken down using the split() function. not the best, per se, but i've done it and it works.

link|flag
Coincidentally I came up with this exact idea and it was working fine, but like you said not too sure if its the correct way and sometimes the string might get quite large (not sure if there is a limit of the id). – Roger Oct 9 at 0:35
I use a similar method all the time, but instead of the 'id' I use the 'rel' attribute. I believe either will hold as much information as you need, including HTML. – fudgey Oct 9 at 1:25

Your Answer

Get an OpenID
or

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