The export functionality to the document on the server is extremely useful for converting HTML content to MS word document and download it as a.docx file. The MS word document can be quickly generated with HTML content via PHP. Converting…
Expand +Author: Pradeep Maurya
Passing Arguments to Event Handlers
Delete But what if you’re going to have to pass a parameter? Say you have a list of ids, and you want to remove one by clicking on the “Delete” next to it. You can’t do: Delete Because the expression…
Expand +Handling Events – React
What is Event? Events are the activities to which javaScript can respond. For example: Clicking an element Submitting a form Scrolling page Hovering an element Handling Events: The handling of React events is very similar to the handling of DOM…
Expand +State in React Component
State is similar to props, but it is private and fully controlled by the component. We can create state only in class components. It is possible to update the state/Modify the state. In this article, we will discuss about State…
Expand +Props in ReactJS
React allows us to send information to a Component using something named props. Props are basically a kind of global variable or object. In this post, we will read about this in more detail. When React sees an element representing…
Expand +Best Way to do the Competitor research in SEO
Why is it important to research competitors? How to do competitor research? Step1: – Identify your top ten competitors. If you need some guidance in finding your competitors, Google is an excellent resource. Simply create the sort of item you…
Expand +What is JSX in React?
Introduction of JSX JSX stands for javascript XML. It is a syntax extension to Javascript. JSX is a preprocessor step that adds XML syntax to Javascript. JSX produces React “element”. It is possible to create elements without JSX but JSX…
Expand +Current Affairs Mar 2019 – Science & Technology
The first Transcatheter Aortic Valve Implantation (TAVI) was introduced by the state of Tamil Nadu in the government sector. It was launched on 18 November at the Tamil Nadu Government Multi-Super Specialty Hospital (TNGMSSH), Omandurar Estate.
Expand +How to connect a MySQL database with Node.js
In this tutorial, I will explain the Node.js and MySQL related points. If you’re new to Node and Express then you’re not going to regret taking our Node course. Learn Node js , Express js, and MongoDB Complete Course Here’s how to use MySQL…
Expand +How to Send Emails With Node.js
Nodemailer is a Node.js module for easy to send e-mail like cake. The project started in 2010, when it wasn’t possible to send E-mails, today it’s the default solution for the majority of Node.js users. Step -1: You need to…
Expand +