Tutorials on ASP.NET Core, Blazor, jQuery, JavaScript, Entity Framework, Identity, WordPress, SQL, HTML & more


Understanding jQuery Mousemove Event – .mousemove()

Last Updated: June 4, 2021

jquery mousemove

The jQuery Mousemove event provides real time X and Y coordinates of the mouse pointer. You can use it to find the current position of your mouse.

(more…)

What is jQuery CDN and how you can use it in your website

Last Updated: January 21, 2023

jquery cdn

The jQuery CDN is a way to include jQuery in your website without actually downloading and keeping it your website’s folder. There are a number of jQuery CDNs which you can use, examples - Google, Microsoft, Cloudflare, jQuery own CDN & more.

(more…)

Select Elements with their Index using jQuery Eq Method – .eq()

Last Updated: June 4, 2021

jquery eq

The jQuery Eq method is used to select elements by their index. The index in jQuery always starts with 0.

(more…)

jQuery fadeIn & fadeOut Methods

Last Updated: June 4, 2021

jquery fadein fadeout

jQuery has 2 fading methods which are .fadeIn() and .fadeOut().

The fadeIn method displays the element by fading it to opaque.
The fadeOut method hides the element by fading it to transparent.

Note – jQuery does the fading by changing the opacity of the element.

(more…)

jQuery Datepicker 2 minutes Tutorial – before you start using it in your website

Last Updated: June 4, 2021

jquery datepicker

If you want to let users select a Date from a calendar, for your input control, then use jQuery Datepicker plugin. The Datepicker (which is actually a calendar) will show in a small popup when the input control gets the focus and will close when the input control loses focus.

(more…)

Learn jQuery DataTables in 2 minutes

Last Updated: June 4, 2021

jquery datatables

DataTables is a powerful jQuery plugin for creating for displaying information in tables and adding interactions to them. It provides searching, sorting and pagination without any configuration. In this 2 minutes tutorial you will learn the basics of DataTables and use it in your website.

(more…)

How to do Animations with jQuery Animate Method

Last Updated: June 4, 2021

jquery animate

The jQuery Animate - .animate() helps you to create custom Animations on CSS properties.

jQuery Animate Syntax

(more…)

How to Create an “Instant Username Availability” checking feature in ASP.NET

Last Updated: June 6, 2021

Instant Username Availability Check feature

The Instant Username Availability Check feature will enable visitors to easily find out which usernames are available and which are already taken. So when they come to create their account on your website they don’t have to:

(more…)

How to use jQuery .getJSON() Method to perform AJAX work

Last Updated: June 4, 2021

jquery getjson

The jQuery getJSON Method (.getJSON()) is an AJAX method that is used to fetch JSON data using HTTP GET request.

(more…)

4 jQuery Timer examples which all developers should know

Last Updated: June 4, 2021

jquery timer

In this tutorial I will use jQuery Timer features to create few examples like Image Slider, time clock, stop watch and random background color changing effect. These examples are created with setInterval function of JavaScript.

(more…)