evidenttutorials.com
Home Django HTML JavaScript jQuery PHP Python Server SQL
First Previous Page 2 of 2.
January 04, 2025

How to change HTML attributes using jQuery

We can use jQuery to change HTML attributes of an HTML elements. There is attr method available for this purpose. The attr function allows us to change any HTML attribute of a selected element.

Read more... 
January 04, 2025

How to change css properties using jQuery

We can use jQuery to change CSS design & properties of an HTML elements. There is css method available for this purpose. The css function allows us to change any css property of a selected element.

Read more... 
December 25, 2024

How to use two jQuery version without conflict

Sometimes, it becomes necessary to use two different versions of jQuery in a project. However, this can lead to conflicts between the versions. To prevent such issues, we can create separate jQuery objects for each version, allowing them to work independently without interference.

Read more... 
December 14, 2024

Add and remove css class using jQuery

We can use jQuery to add or remove CSS classes from elements. There are several methods available for this purpose. The first method is the addClass/removeClass functions, which allows us to add/remove a CSS class to a selected element. The second method is toggleClass, which can both add and remove a CSS class from a selector, depending on its current state.

Read more... 
November 30, 2024

Check if a checkbox is checked or not using JQuery

For checking if a checkbox is checked using jQuery, we can use the prop() method to access the checked property. Below is a simple example:

Read more... 
November 16, 2024

Upper Case input element value using jQuery

You can convert an input element value into upper case (all letters in capital letters) with the help of toUpperCase function. The example of toUpperCase method mentioned below:

Read more... 
November 16, 2024

Lower Case input element value using jQuery

You can convert an input element value into lower case (all letters in small letters) with the help of toLowerCase function. The example of toLowerCase method mentioned below:

Read more... 
November 16, 2024

Get character length of input element value using jQuery

You can length (number of characters) an input element value with the help of length function. The example of length method mentioned below:

Read more... 
First Previous Page 2 of 2.

Latest Posts

You can find latest posts below:

Set and Get variables in Django session How to run a Django project? How to create a new Django project? How to create a new Django app? What does collectstatic command do in Django?
About Us Privacy Policy Disclaimer