Jaisshree has Published 121 Articles

Email + Social Logins in Django - Step-by-Step Guide

Jaisshree

Jaisshree

Updated on 22-May-2023 09:57:26

308 Views

Email and social logins are common techniques for websites and apps to allow users to establish accounts or check in. Users must provide their email address and password for email login, however, social login allows users to sign in using their social networks accounts, such as Facebook or Google. In ... Read More

Creating Snackbar using HTML, CSS and Javascript

Jaisshree

Jaisshree

Updated on 19-May-2023 15:22:22

837 Views

Snackbars are notification bars that appear at the bottom of a web page to display an important message, usually to confirm an action or provide feedback to the user. It is displayed on the screen for fewer seconds and made to disappear. They are an essential element of user ... Read More

Creating a Tabbed pills and Vertical pills navigation menu in Bootstrap

Jaisshree

Jaisshree

Updated on 19-May-2023 15:08:27

522 Views

Bootstrap provides several options for creating navigation menus, like tabbed and vertical pills. To create this kind of navigation menus in Bootstrap, we can use the built-in classes and components offered by the framework. This aids in creating a stylish and functional navigation menu that works well on all devices. ... Read More

How to create a simple map using JQuery?

Jaisshree

Jaisshree

Updated on 19-May-2023 14:50:05

457 Views

JQuery is a well-liked interactive component in the JavaScript library that makes it easier to create online web apps. It can be made interactive with plugins and is simple and configurable. It is the best option for producing simplistic maps that lack advanced capabilities because it is compatible with all ... Read More

How to clone sidebar by default using Bootstrap?

Jaisshree

Jaisshree

Updated on 19-May-2023 14:47:18

196 Views

On a web page, a sidebar is a vertical column that is placed either on the left or right side. Further information or navigation links are frequently displayed using it. The responsive and mobile-first "offcanvas" component of Bootstrap slides into view from the side of the screen. Bootstrap, a CSS ... Read More

How to clone a block using JQuery?

Jaisshree

Jaisshree

Updated on 19-May-2023 14:35:16

490 Views

A powerful method that allows developers to dynamically create and modify content blocks on a web page is cloning a block with jQuery. In website development cloning means duplicating an element or creating a new element just like another element. By using JQuery clone techniques you can clone a div, ... Read More

Inverting all bit values in BitArray in C#

Jaisshree

Jaisshree

Updated on 25-Apr-2023 17:31:58

1K+ Views

A BitArray is a collection of Boolean values represented as a series of 1’s and 0’s. It is often used to store and manipulate binary data efficiently. In C#, the BitArray class is part of the System. Collections namespace, and it allows you to manipulate the individual bits in the ... Read More

Is operator in C#

Jaisshree

Jaisshree

Updated on 25-Apr-2023 17:31:22

251 Views

Is operator also called as the type-compatibility operator plays an integral role in C# structures. Let’s try to understand this operator. C#’s Is operator checks if the given object is compatible with another object and gives the result as true, if it is compatible. Else returns false. Syntax expression is ... Read More

How to use Interface References in C#?

Jaisshree

Jaisshree

Updated on 25-Apr-2023 17:26:22

432 Views

C# is an object-oriented programming language that offers a unique feature known as interfaces. They enable you to declare a collection of attributes and methods that a class must implement without mentioning the specifics of how they should be implemented. The ability to write code that is independent of a ... Read More

LongLength property of an Array in C#

Jaisshree

Jaisshree

Updated on 25-Apr-2023 17:23:07

245 Views

In C#, the Array class has a read-only property called LongLength. It returns a long integer value that indicates how many elements the array can accommodate. Only arrays with a rank of one or more, i.e., those that are not single-dimensional arrays, can access the LongLength property. Although the LongLength ... Read More

Advertisements