.text()
Gets or sets the text content of the selected elements.
var h1 = $("header h1").text(); $(".text-placeholder").html(h1);
Binds a function to the click event of the selected elements, allowing you to define actions when the user clicks on them.
Hides the selected elements, making them not visible on the webpage.
Displays the hidden elements that were previously hidden using the `.hide()` method.
Toggles between showing and hiding the selected elements.
Fades in the selected elements, making them gradually visible.
Fades out the selected elements, gradually making them less visible.
Adds one or more classes to the selected elements.
.change-bg-color changes the background color
Inserts content or elements before the selected elements.
Inserts content or elements after the selected elements.
Inserts content or elements at the end of the selected elements.
It is currently targeted on this container
$(".append").append
Gets or sets the HTML content of the selected elements.
It is currently targeted on the h2 of this container
$(".html h2").html
Gets or sets attributes of the selected elements.
Gets or sets the value of form elements.
Gets or sets the text content of the selected elements.
var h1 = $("header h1").text(); $(".text-placeholder").html(h1);