You mean like the title or the href or any other defined attributes of the link?
You could do this $('link').click(function(){ var title = $(this).attr('title'); var href = $(this).attr('href'); var id = $(this).attr('title'); }); On Mar 23, 9:25 pm, kevinm <sonicd...@gmail.com> wrote: > I am need to get the attributes of the click link because I need to > perform an event based on the id of the link. > > Basically the has is used to scroll to a section. I then want to use > the additional information to cause an ajax load > > Thanks > Kevin