how to copy text to clipboard With javascript
<!DOCTYPE html>
<html>
<head>
<title>Copy Text to Clipboard</title>
</head>
<body>
<center>
<h1> Copy Text to Clipboard</h1>
<input type="text" name="" id="copy">
<button onclick="mycopy()">Copy Text</button>
</center>
...
www.technicaldestination.blogspot.com
This website helps you to solve hacking problems
www.technicaldestination.blogspot.com
you follow mw on youtube Technical destination
www.technicaldestination.blogspot.com
My blog help to users to solve hacking and programming errors.
www.technicaldestination.blogspot.com
if you see hacking news then follow me on instagram facebook blogger and youtube.
Friday, 12 July 2019
Show and hide password using JavaScript
Show and hide password using JavaScript
<!DOCTYPE html>
<html>
<head>
<title>Password</title>
<style type="text/css">
body{
background-color: black;
}
h1{
color:white;
}
input[type="checkbox"]{
width: 30px;
}
...
Monday, 8 July 2019
Show an Image PopUp after Page Load using html css javascript jquery
Show an Image PopUp after Page Load
<!DOCTYPE html>
<html>
<head>
<title>PopUp image</title>
<style type="text/css">
#popupmain {
position: fixed;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.6);
z-index: 1001;
}
#popup {
width: 500px;
...
Saturday, 6 July 2019
Display Date and Time with javascript
Display Date and Time with javascript
Code here
<!DOCTYPE html>
<html>
<head>
<title> Date And Time</title>
</head>
<body>
<h1> Display Date And Time with Javascript</h1>
<button onclick="document.getElementById('demo').innerHTML= Date()"> Display Date And Time</button>
<p id="de...
Friday, 5 July 2019
Show Random Images With javascript Api
Show Random Images With Api
Code Here
<!DOCTYPE html>
<html>
<head>
<title> Change Man With Api</title>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js">
</script>
<style type="text/css">
body{
background-color: black;
}
h1{
color: white;
...
Random Password Generator With Javascript || javascript Mini project
Random Password Generator With Javascript
Code Here
<!DOCTYPE html>
<html>
<head>
<title> Generator Password</title>
</head>
<body>
<h1> Password Generator</h1>
<input type="text" name="" id="generate">
<input type="button" name="" value ="Password Generator button" onclick="pass()">
<script type="text/javascript">
...
Thursday, 4 July 2019
Generate Random Number With Javascript || Mini Javascript Project
Generate Random Number With Javascript
Generate Random Number
Javascript Mini Project
Code HERE
<!DOCTYPE html>
<html>
<head>
<title>Genertae Random number</title>
</head>
<body>
<h1> Generate Random Number With Javascript</h1>
<input type="text" name="" id="input">
<script type="text/javascript">
var generate = Math.random()...