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


jQuery AJAX Events Complete Guide for Beginners and Experts

Last Updated: June 4, 2021

jQuery AJAX Events

When there is an AJAX call then the jQuery AJAX Events are fired during the life cycle of this AJAX call. We can use these events to show custom message to users, or do other operations.

There are 6 different jQuery AJAX Events:
  • 1. ajaxStart()
  • 2. ajaxSend()
  • 3. ajaxSuccess()
  • 4. ajaxComplete()
  • 5. ajaxStop()
  • 6. ajaxError()
(more…)

jQuery Post Complete Guide for Beginners and Experts – Examples & Codes

Last Updated: June 4, 2021

jquery post

The jQuery Post method is an AJAX method that fetches data from the server using HTTP POST. You can use it to call server page like .php or .aspx.

Let us understand all about the jQuery Post method in details.

Syntax of jQuery Post Method

jQuery.post( url [, data ] [, success ] [, dataType ] )
(more…)

jQuery Get Complete Guide for Beginners and Experts

Last Updated: June 4, 2021

jquery get

Learn how to use the jQuery .get() method to make AJAX calls.

What you will learn ?

I’m going to show how to fetch contents from text files and database by using this method.

The full codes can be downloaded by the link given at the end of this tutorial.

In short: you will master this method.

The jQuery Get function is used to make AJAX calls and can be helpful to update a web page with partial page reloading. It uses HTTP GET method to initiate an AJAX request and fetch data from the external pages.

Let us understand all about this method in details.

(more…)

The Ultimate Revelation Of jQuery AJAX method with 7 Examples & Codes

Last Updated: June 4, 2021

jquery ajax

This is the most comprehensive guide to jQuery AJAX on the planet.

The best part?

I’m going to show you 7 ways to implement jQuery AJAX in your website.

In short: if you want to implement jQuery AJAX, you’ll love this guide.

Let’s get started.

(more…)

jQuery Load Complete Guide for Beginners to Experts – Examples & Codes

Last Updated: June 4, 2021

jquery load

Now learn all the ways to use the jQuery Load method for doing AJAX calls.

The best part ?

I’m going to show you how to fetch contents of external files (HTML, TEXT, XML, JSON) with the .load() method. In the end, I will also read data from database using this method.

The full codes can be downloaded by the link given at the end of this tutorial.

In short: you’ll love this guide.

Let’s get started.

The jQuery Load method is the simplest yet powerful enough to fulfill all your AJAX requirements. It can load data from external files (like HTML, TXT, XML, JSON) asynchronously.

jQuery Load Syntax

It's syntax is given below:

$(selector).load(url,data,callback);
(more…)

How to Integrate a Bootstrap Menu Into your WordPress website

Last Updated: June 9, 2021

wordpress bootstrap menu

This Tutorial will teach you how to integrate Bootstrap 4 menu in your WordPress Theme. You can use it to make your WordPress Menu Responsive i.e. the menu will be collapsed and toggleable in mobile screens, but for tablets and computer screen (big screens) it will remain fully visible.

(more…)

How to Use Bootstrap to Make Images, Videos and Navbar Responsive

Last Updated: June 8, 2021

bootstrap responsive image video navbar

Every website contains some images, videos and a Navbar at the top. They should all be responsive i.e. fits to every screen sizes. And for this purpose we use Bootstrap framework.

In this tutorial I will explain all these things from scratch and help you to make every Image, Video and Navbar mobile friendly using Bootstrap 4.

If you are a beginner in Bootstrap 4 then I would recommend to first read the below tutorial:

(more…)

How to Use Bootstrap to Create Responsive Design

Last Updated: June 8, 2021

how to use bootstrap

If you are looking to use Bootstrap in your website then this tutorial will teach you from the starting point. You just need a basic knowledge of HTML and CSS to use Bootstrap. After completing this tutorial you will reach an expert level from where you can develop any sort of responsive website.

In this tutorial I will use Bootstrap 4 and 5 in a web page to make it responsive. You can also check this tutorial - What is Bootstrap, to learn about the offerings of this framework in depths.

(more…)

What is Bootstrap and Why you should use it in Web Development

Last Updated: June 8, 2021

In web development world, the question What is Bootstrap is quite popular. You may have tried to get the answer but failed to get a proper one. So I decided to provide a proper and easy answer for this question in this article.

(more…)

How to Make Sticky Ads with jQuery Effortlessly

Last Updated: June 4, 2021

sticky ads

Sticky Ads are those that follows you when you are scrolling down a page. They bring great view-ability to the advertisement placed on the site, as visitors are tend to click on the sticky ads quite often.

These types of ads can be placed anywhere, like on sidebars or inside columns, on the website where they hold on their position regardless of scrolling.

(more…)