if class is present jquery code example

Example 1: jquery hasclass

if ($( "#foo" ).hasClass('className')) {
	$( "#foo" ).removeClass( 'className');
} else {
  $( "#foo" ).addClass( 'className');
}

Example 2: javascript check if element has class

if(document.getElementById("myElmentID").classList.contains("hidden")){
// I have the 'hidden' class
}

Example 3: detect if an element has a class jQurey

$("#EL_ID").hasClass("CLASS_NAME");

Example 4: jquery check if a class exists

if ($(".mydivclass")[0]){
    // Do something if class exists
} else {
    // Do something if class does not exist
}

Example 5: jquery check if element has class starting with

/* Answer to: "jquery check if element has class starting with" */

if(!$(this).is('[class*="answerbox"]')) {
    //Finds element with no answerbox class
} else {
    //The element has already an answerbox class
}

Example 6: button has class or not c#

//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