get element by class name jquery code example

Example 1: jquery get class name

//jQuery get class name of element 
var className=$('#myElementID').attr('class');

Example 2: how to get element by class name javascript

document.getElementsByClassName("legend").style.display="none";

Example 3: jquery get eklement by name

$('td[name ="tcol1"]')   // matches exactly 'tcol1'
$('td[name^="tcol"]' )   // matches those that begin with 'tcol'
$('td[name$="tcol"]' )   // matches those that end with 'tcol'
$('td[name*="tcol"]' )   // matches those that contain 'tcol'

Example 4: how to find a name of class from page in jquery

if ($(".Mandatory").length > 0) {
    // Do stuff with $(".Mandatory")
    $(".Mandatory").each(function() {
        // "this" points to current item in looping through all elements with
        // class="Mandatory"
        $(this).doSomejQueryWithElement();
    }); 
}

Example 5: jquery select element with class

$('.classid')

Example 6: how to find a name of class from page in jquery

$('.Mandatory').each(function(){
  //do your thing
});