How to perform jQuery Callback after submitting the form ?
The after-form-submit is the set of code that is executed after a submit button is fired. Usually, it is used to blank out the form, once the submit is given. For Example, When the login credentials are wrong, the input becomes blank in the form....
read more
How to Create Animation Loading Bar using CSS ?
Loading Bar with animation can be created using HTML and CSS....
read more
Post/Redirect/Get (PRG) Design Pattern
Prerequisite- HTTP Protocol, GET and POST requests using Python...
read more
How to check a string starts/ends with a specific string in jQuery ?
JavaScript provides a lot of string methods that check whether a string is a substring of another string. So, jQuery wouldn’t be necessary at all to perform this task. However, we will cover all the different ways of checking whether a string starts or ends with a string:...
read more
ReactJS | Binding Event Handlers
In ReactJS, we need to bind events so that the this keyword would not return an “undefined“. In this article, we are going to see the different ways in which we can bind event handlers in ReactJS....
read more
How to Create Full Screen Overlay Navigation Bar using HTML CSS and JavaScript ?
Create a full screen Navigation Bar: In this article, you will learn how to create a full-screen navbar for your website. There are three methods to create a full screen overlay navigation bar which are listed below:...
read more
How to Send Email using Mailgun API in Node.js ?
Sending an email is an essential part of any project and it can be achieved by using Mailgun API. It is very popular for sending emails....
read more
How to make container shrink-to-fit child elements as they wrap?
A Flexible Layout must have a parent element having display property set to flex. Direct child elements of the flexible container automatically become flexible items....
read more
Best approach for “Keep Me Logged In” using PHP
We all have noticed the “Keep Me Logged In” checkbox in most of the websites we log in to. There are different ways and approaches to achieve this through code....
read more
Deploying a TensorFlow 2.1 CNN model on the web with Flask
When starting to learn Machine Learning, one of the biggest issues people face is deploying whatever they make to the web for easier demonstration/use. This article will help those beginners bridge the gap between creating a TensorFlow model and deploying it on the web with Flask and hopefully gain some insight on the issues TensorFlow and Flask have....
read more
How to fetch single and multiple documents from MongoDb using Node.js ?
MongoDB, the most popular NoSQL database, is an open-source document-oriented database. The term ‘NoSQL’ means ‘non-relational’. It means that MongoDB isn’t based on the table-like relational database structure but provides an altogether different mechanism for storage and retrieval of data. This format of storage is called BSON ( similar to JSON format). Refer (this) article....
read more
Using Leaflet.js to show maps in a webpage
Maps are incredibly helpful for showing locations on a website. Use cases of maps include showing the location of an office address, which is a better option than just showing an image or a text address. It can also be used for marking points of interest in a tourist location so that the visitor can plan by looking at all the nearby areas. Leaflet.js is a JavaScript library that makes it extremely easy to show maps on a webpage and interact with it. This guide would attempt to give a simple introduction to using Leaflet.js to display map and display the required area on the map....
read more