In this JavaScript walkthrough tutorial, we take a look at, toggleClass JavaScript Walkthrough, How toggleClass Works in JavaScript, Toggle Class with jQuery. First, we create a folder that will house our toggleClass JavaScript example. Once we create our folder, we then open up that folder in our text editor. We then create a file, toggleClass.html in our folder which will house our toggleClass JavaScript code example. We then get some quick boilerplate, or HTML template that gives us a quick skeleton that will hold our example. We then include a script tag that will link to the jquery library. We then create the button that will be pushed and cause our class to toggle along with the paragraph elements that will be toggled when the button is pushed. We also create within our script tags the code that will listen for a button click. Once the button is clicked, we tell our jquery code to grab our "p" elements and add a class which we call .toggleBlue which will make our paragraph font a bit bigger and the color blue. toggleClass JavaScript Walkthrough, How toggleClass Works in JavaScript, Toggle Class with jQuery is a video that is made to help you understand how the toggleClass works in JavaScript. In order to toggle a class in JavaScript, the jQuery library helps us do this quickly and easily. Make sure to practice it and learn its potential.