For 1 param in rel I use:

<a rel="all">All</a> 
var group = $(this).attr('rel');

How to extract multiple rel attribute from link?

<a rel="all test1 test2">All</a>

TNQ!

link|improve this question

50% accept rate
feedback

1 Answer

up vote 3 down vote accepted
var groups = group.split( ' ' );

See this test.

Or, if you want to account for possible repeated whitespace chars in between them

var groups = group.split( /\s+/ );
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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