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


How to use jQuery Toggle Method – .toggle() effectively

Last Updated: June 3, 2021

jquery toggle

The jQuery Toggle method (.toggle())will toggle between hide() and show() properties for the selected elements. This means if an element is hidden then .toggle() will show it, similarly if the element is showing then .toggle will hide it.

(more…)

Learning jQuery Siblings Method – .siblings()

Last Updated: June 3, 2021

jquery siblings

The jQuery Siblings method - .siblings() returns all the siblings of the selected element. Siblings are those elements that have the common parent.

(more…)

Selecting elements using jQuery :nth-child() method

Last Updated: June 3, 2021

jquery nth child

To select a nth child of a parent use jQuery nth child method - :nth-child(). The value of ‘n’ should be a positive integer specifying which number of child you want to select.

(more…)

How to use jQuery Parents Method – .parents() for DOM Traversal

Last Updated: June 3, 2021

jquery parents

The jQuery Parents Method (.parents() returns all the parents (ancestor elements) of the selected elements. This goes all the way to the DOM root (body, html).

(more…)

.children() – How to work with jQuery Children Method

Last Updated: June 4, 2021

jquery children

The jQuery Children method - .children() gives all the direct children of the selected element.

(more…)

jQuery Parent Method – .parent() complete usage guide with codes

Last Updated: June 4, 2021

jquery parent

The jQuery Parent method (.parent()) returns the direct parent of the selected element.

(more…)

How to Implement Discord API in ASP.NET MVC & C#

Last Updated: June 7, 2021

discord api

Discord is All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone. As of December 2017, there were about 87 million unique users of the software.

(more…)

Learn 3 Ways to create jQuery Multiselect feature in your website

Last Updated: June 4, 2021

jquery multiselect

I will teach you to create jQuery Multiselect feature in 3 different ways. All these ways are very easy and create amazing eye-catchy Multiselect controls.

(more…)

jQuery Text Method – .text() – Complete Usage Guide with Codes

Last Updated: June 4, 2021

jquery text

The jQuery text method (.text()) is used to either return or set the text contents of the selected elements.

(more…)

jQuery Html Method – .html() – Complete Usage Guide with Codes

Last Updated: June 4, 2021

jquery html

The jQuery Html method (.html()) is used to either return or set the html contents of the selected elements.

(more…)