I have a list of elements that have multiple classes, for example:
It would probably be better to store those values in the data attribute:
Then:
$(".etape").click(function(){ var myBtnType = $(this).data('btntype'); });
jsFiddle