Check a link start with HTTP or HTTPS How to check a link not start with http:// or https:// below code helps to add and find link does has it […]
JavaScript Operator and &&, or || define with logical condition
JavaScript Operator && (AND), ||(OR). They perform some operations on single or multiple values and provide results. and like that double pipes represent the logical OR operator. Logical AND Operator […]
Create Minutes and Second Clock with HTML and JQuery with automatically time update
create a clock with minute and second for the countdown timer. Clock countdown can create by the plugins but I show you the below code for creating the same. […]
React Tutorial : Create Article DIV, Heading, Sub Heading & Paragraph
<!doctype html> <html> <head> <title>Page Title</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 articleHeading = React.createElement(‘h2’, null, ‘My First […]
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 […]
Get selected uploaded file name in input file by jQuery without fake path
Uploaded file value comes with a fake path, how to get filename without a fake path. In this code, how to get filename without full path, only use the file […]
How to disbale anchor tag by using JavaScript.
Learn how to disable <a> tag when using link of any text, button or etc. You can do this by using simple inline or function javascript and onclick return false […]
How to add Text, Link and Mention or Hashtags on Twitter Share Post Link
With this PHP code, without using any Online API you add link mention or hashtags on your twitter share post. This is code for add text, link and tag on […]
What is Conversion Rate Optimization, CRO Strategies, Use of CRO and Some Important Facts.
What is Conversion Rate Optimization, CRO Strategies, Use of CRO and Some Important Facts? Conversion Rate Optimization (CRO) is the exercise of increasing sales and prospective leads from any website. CRO […]