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


jQuery Selector – The Complete Usage & Tutorial Guide

Last Updated: June 4, 2021

jquery selector

The jQuery Selector starts with the dollar sign and parentheses - $(), and finds one or more HTML elements in the DOM. We can use name, id, CSS Class, type, attribute, etc to find elements using the jQuery Selector.

The below jQuery Selector finds all the div elements in the DOM.

(more…)

Implementing TheMovieDB (TMDB) API with jQuery AJAX

Last Updated: June 4, 2021

Implementing TheMovieDB (TMDB) API with jQuery AJAX

The TheMovieDB (TMDB) API provides all the information of movies, actors and series, free of charge. You can integrate this API in your Website using only jQuery AJAX.

Introduction

In this tutorial I will allow user to search for any actor (like Tom Cruise, Nicole kidman, Tom Hanks, etc). The actor results will be shown in a grid structure created with a div element. On clicking on any actor in this result, the whole information of that actor is shown to the user.

(more…)

Implementing TheMovieDB (TMDB) API in ASP.NET MVC – [with full codes]

Last Updated: June 7, 2021

TheMovieDB api

Introduction to TheMovieDB API

The Movie Database (TMDb) is a community built movie and TV database. Every piece of data has been added dating back to 2008. TMDb's strong international focus and breadth of data is largely unmatched and available through the mean of TheMovieDb API. You can use this API to create different sort of features like searching movie, actors, TV series, companies, reviews and much more.

(more…)

Quickly understanding the jQuery Document Ready – $(document).ready() method

Last Updated: June 4, 2021

jquery document ready

The jQuery Document Ready makes sure the page DOM is ready for the jQuery codes to execute. Remember to put all your jQuery Codes inside it.

(more…)

How to Create Bootstrap Modal in your Website

Last Updated: June 8, 2021

bootstrap modal

A Bootstrap Modal is used to show important information to site’s visitors. This can be some sort of confirmation (like cookies information, updating or deleting profile), session time out or a new product launch. You will also find that these Bootstrap Modals are used by website owners to collect email addresses for newsletter subscription.

(more…)

How to Restore Database in SQL Server

Last Updated: June 8, 2021

restore database sql server

If you have the Database Backup File then you can easily restore it to your SQL Server. I will use SQL Server Management Studio (SSMS) to restore the database.

(more…)

How to Backup SQL Database using SSMS

Last Updated: June 8, 2021

backup sql database

In this tutorial I will teach you how to Backup SQL Database with your SQL Server Management Studio (SSMS). This will save you from losing your data in case of any SQL Server problem.

SQL Database Backup Steps

The following steps explain how to do Full Backup of your database using SSMS.

STEP 1: Expand the Database node

Click the plus sign in-front of the Databases node. This will show all the databases.

(more…)

jQuery grep – $.grep() Method

Last Updated: June 4, 2021

jquery grep

jQuery .grep() method is used to filter an array based on a provided condition. The condition is provided by a filter function. For an item to be included in the result the filter function should return true for it.

(more…)

jQuery CSS Method – The Complete Guide with Examples

Last Updated: June 4, 2021

jQuery CSS

The jQuery CSS Method returns the CSS Style property value of the first matched element. It can also set, single or multiple CSS Style properties on the selector.

Note that the selector can itself be a single or multiple elements.

Syntax of jQuery CSS Method

There are 5 syntax of this method, you can use anyone of them depending upon the situation.

(more…)

jQuery Find Method – The Complete Tutorial for Programmers

Last Updated: June 4, 2021

jquery find

The jQuery Find Method (.find()) returns all the descendants of the selector. The descendants are the elements that lie inside the selected element. These can be it's children, children of children, children of children of children, and so on.

(more…)