How do I remove a css class from a div tag and then add another css class to that same div tag using JQuery?

H

How Can We Help?

How do I remove a css class from a div tag and then add another css class to that same div tag using JQuery?

The following code removes a css class and then adds another css class to a specific div tag

$('#div_id').removeClass("OldClass").addClass("NewClass");

#div_id = Div Tags ID
OldClass = CSS class that needs to be removed
NewClass = CSS class that needs to be added

About the author

Ian Carnaghan

I am a software developer and online educator who likes to keep up with all the latest in technology. I also manage cloud infrastructure, continuous monitoring, DevOps processes, security, and continuous integration and deployment.

About Author

Ian Carnaghan

I am a software developer and online educator who likes to keep up with all the latest in technology. I also manage cloud infrastructure, continuous monitoring, DevOps processes, security, and continuous integration and deployment.

Follow Me