has class in jquery

JavaScript
if ($( "#foo" ).hasClass('className')) {
	$( "#foo" ).removeClass( 'className');
} else {
  $( "#foo" ).addClass( 'className');
}$( "#mydiv" ).hasClass( "foo" )
$("#EL_ID").hasClass("CLASS_NAME");jQuery(Selector).hasClass('class_name');<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>hasClass demo</title>
  <style>
  p {
    margin: 8px;
    font-size: 16px;
  }
  .selected {
    color: red;
  }
  </style>
  <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
 
<p>This paragraph is black and is the first paragraph.</p>
<p class="selected">This paragraph is red and is the second paragraph.</p>
<div id="result1">First paragraph has selected class: </div>
<div id="result2">Second paragraph has selected class: </div>
<div id="result3">At least one paragraph has selected class: </div>
 
<script>
$( "#result1" ).append( $( "p" ).first().hasClass( "selected" ).toString() );
$( "#result2" ).append( $( "p" ).last().hasClass( "selected" ).toString() );
$( "#result3" ).append( $( "p" ).hasClass( "selected" ).toString() ) ;
</script>
 
</body>
</html>//How to check if class attribute contains something?
//https://stackoverflow.com/questions/34992613/how-to-check-if-class-attribute-contains-something
//el is the web element
if(el.getAttribute("class").split(" ").contains("disabled"))
{  
    //your code
}

or 

#region HTML Method
public static bool hasClass(WebControl element, string strClass)
{
  return Convert.ToString(element.Attributes["class"]).Split(' ').Contains(strClass);
}
#endregion
Source

Also in JavaScript: