jQuery toggleClass example

Toggle class name on click in jQuery

by Anchit Gupta

HTML

<div class="rectangle">
  <div class="inner-rect"></div>
</div>

CSS

body {
  background: #20262E;
  padding: 20px;
  font-family: Helvetica;
}

.rectangle{
  width: 300px;
  height: 200px;
  background-color: red;
}
.inner-rect{
  width:
  height: 50px;
  background-color: yellow;
  margin-left: 10px;
  margin-top: 10px;
}