How can I retrieve only the first class p7 from this HTML element?
HTML
<div id="myDIV" class="p7 nextclass class_tt">some content</div>
JavaScript
$('#myDIV').attr('class').first(); //will not work
|
|
|
||||
|
|
|
You can use split() to do that:
|
|||
|
|