Custom Pipes Pipes are a very helpful feature in Angular. There are some built-in pipes, but I can also build my own pipes, that is called Custom Pipe. In this blog, we will learn about Custom Pipe in Angular7. Pipes are one of the interesting features of angular but sometimes built-in pipes are not sufficient […]
How we can create attribute binding in Angular 7?
Data binding is a core concept in Angular and it allows to explain communication between a component and the DOM. There are many types of data-binding in Angular. Here I will discuss Attribute Binding and how to implement it in angular 7. We can set the value of an attribute directly with attribute binding. Attribute Binding […]
Know how to create a simple carousel with Angular
In this blog, we are going to discuss, how to create a simple carousel in Angular. For creating a carousel, first, install ng-bootstrap. So, open the terminal and write down the folder structure, and type: npm install –save @ng-bootstrap/ ng-bootstrap Next, go to app.module.ts page app.module.ts import { NgbModule } from ‘@ng-bootstrap/ng-bootstrap’; imports: [ NgbModule […]
Enable Submit Button After Correct Validation including regExp
We can find forms on almost every website. In this blog, we will see how we can validate user inputs with the help of JavaScript. Form validation is the process of verifying that a form has been filled in accurately before it is submitted. Here, we’ll see if all the fields are of correct values, […]
Upload and Display Image using JavaScript and PHP
In this blog, I’ll show how to upload and display an image with both JavaScript and PHP. Please follow these steps. Step 1 First make a folder named, “upload-image”. Under “upload-image”, create another folder for the image, named “image” where my image will show after upload. Step 2 1. Create a file named, “index.php” […]
How to Generate PDF Documents in WordPress using CPT and ACF
WordPress allows us to easily generate PDF files and make them available for download. In this blog, I’ll explain how to simply create and open the PDF files with CPT and ACF in the WordPress site. Create ACF Field Advanced Custom Fields is a WordPress plugin which allows us to add extra content fields to our WordPress. Please […]
Some useful differences between CSS and SCSS
CSS is the styling language which is used to style web pages. Initially, CSS was written to style the HTML pages which grows more and more in the line of codes if the HTML pages increases. As the project gets bigger, maintenance & readability of CSS code gets harder. CSS causes some problems like: Big effort […]
How to write an interesting blog comment?
What is Blog Comment? A blog became popular for many reasons. One of the reason is its comments. Some great comments make a blog interesting and also popular. In short, comments are a form of communication with blogger and viewers. Some experts say ‘blog commenting is a lot like dating.’ Most of the blogs allow a sphere at […]
How to improve the readability of your Blog?
A blog is one of the fields where someone who loves to write, share their experience on different subjects. There are many useful tips for blog writing. In this article, I’ll discuss some important tips. Check the tips given below: Make sure paragraphs aren’t too long. The articles consist of a minimum 300 words. Write short sentences. […]
Two Methods of Full Screen Overlay Navigation
Using JavaScript and CSS properties we can create stylish fullscreen overlay navigation with a hamburger toggle button. This navigation menu will appear when toggled. Besides, the overlay covers the whole screen and makes lots of space for menu items. Similarly, there are several ways to create this type of navigation. In this blog, I […]