This is a simple div with two classes:
<div class="social twitter"></div>
I am trying to get the name of the second class onclick:
$( ".social" ).bind( "click touchstart", function() {
var sn = $(this).**SECOND_CLASS(= twitter)**;
});
any ideas on how this could be done? Thank you