Hi, I am working on a click event in a Controller, the thing is I'd like to get the full class name on the element I have clicked on.
- '[class*="sNext"] click' : function() {
- get the full class name // sNext1 mf1_direction
- what is the code to apply to get the full class name of this element clicked ?
- usually with Jquery I'll do $(this).attr('class')
- }
Any ideas ?