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'); });
|
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'); });
| |||
|
feedback
|
|
You don't need to use each(). jQuery's selectors will do it for you :)
The above code will do the trick. | |||
|
feedback
|
|
If
| |||
|
feedback
|