Styling with JQuery
Styling with JQuery
Introduction
Hello,
We have worked on HTML DOM objects in all the examples so far.
With jQuery, we can also manipulate the styles of HTML elements.
JQuery provides some methods to achieve this.
class
In the first examples we will do, we will see the use of classes with JQuery.
In the example below, we inject our JQuery library into HTML and define two classes named pink and yellow that make the text pink and yellow.
Let's start 🚀