<!doctype html> <html> <head> <title>React – Create Button</title> <meta charset=”UTF-8″> <meta name=”viewport” content=”initial-scale=1.0″> </head> <script crossorigin src=”https://unpkg.com/react@16/umd/react.development.js”></script> <script crossorigin src=”https://unpkg.com/react-dom@16/umd/react-dom.development.js”></script> <body> <div id=”root”></div> <script type=”text/javascript”> const button = React.createElement( ‘button’, […]
JSON What It is, Why Use it, Data Types & Methods
What is JSON? JSON stands for JavaScript Object Notation is an open stand file format for sharing data. Web developers easily write and understand the JSON file data. It helps […]
HTTP Definition | HTTP Overview | Introduction of HTTP Basics
HTTP Request HTTP Request in Web Browser? HTTP stands for Hypertext transfer protocol. It enables communication web browsers such as chrome, firefox Mozilla, internet explorer to the webserver. Web clients […]
Get Latitude and Longitude Coods By jQuery and HTML 5 Geo-location API
Get Current Latitude and Longitude Coods By jQuery and HTML5 Geolocation API. HTML5 Geolocation is used to get the geographical position of the user. When you get the visitor Latitude […]
Integrate Transmitsms SMS API use with PHP cURL
Transmit SMS API use with PHP cURL. Send SMS by using API to retrieve information about messages and campaigns. Below the PHP code for how to use Transmit SMS API. […]
Text Replace By Define Simple Function in WordPress
Text replacement in WordPress By Define Simple Function In WordPress replace text by define function in function.php file. By this code allow to easily define text or HTML that replace […]
JavaScript Spread Operator
JavaScript Spread Operator const array =[1,2,3,4]; const arrayTwo = […array, 4]; console.log(arrayTwo); const person = { name:’Brad’, age:36 } const newPerson = { …person, email: ‘[email protected]’ } console.log(newPerson); You […]
HTML 5 Page Structure | HTML 5 Code Layout
Sample Code for HTML 5 Page Structure <!DOCTYPE HTML> <html> <head> <meta http-equiv=”Content-Type” content=”text/html; charset=UTF-8″ /> <meta name=”viewport” content=”width=device-width”> <meta name=”viewport” content= “width=device-width, initial-scale=1.0”> <title>HTML 5 Page Title</title> </head> <body> […]
Upload Image By Ajax Using jQuery FormData Without Submit Form
Image Upload By JQuery Ajax and PHP File uploading by jQuery Ajax, PHP, and HTML it’s a common feature for the dynamic application but sometimes when form submitted page got […]
Create an Accordion with HTML and jQuery
Simple Accordion with HTML & JQuery An accordion used to create FAQ and Question & Answers. A vertical accordion is the show list. Each item can be expanded or collapsed […]