I'm trying to add a rel="lightframe" attribute to all my 'edit' links within my admin_links_node_edit class.

Edit

My code so far looks like this:

$('.admin_links_node_edit a').each(function() { $(this).attr('rel','lightframe'); });

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

You don't need to use each(). jQuery's selectors will do it for you :)

$('.admin_links_node_edit a').attr('rel', 'lightframe')

The above code will do the trick.

link|improve this answer
Thanks. That worked out great. :) – SFox Apr 23 '11 at 22:10
feedback

If admin_links_node_edit is reused among other elements, you'll want to specify the element you're working on (li in this case). In addition, as Vijay Dev said, each() isn't needed, as attr() works on every element in the selector. Therefore:

$("li.admin_links_node_edit a").attr('rel','lightframe');
link|improve this answer
Thanks, Kyte. Your help is also very much appreciated. – SFox Apr 23 '11 at 22:11
feedback

Your Answer

 
or
required, but never shown

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