Monday, January 1, 2018

How To Swap two Number Program in Html

Hello Friends My Name Is Viraj,Today I Will To Swap two Number Program On Your Web Page.

Here In This Html Tutorial Will Create A form Were Will Swap two Number Using Html/Javascript Code.

In This Blog I Will Create A form Were Will Swap two Number.

Here Is An Example Related To Topic....

Step 1:

<!doctype html>
<html>
<head>
<script>
function swap(){
var a,b,c;
a=Number(document.getElementById("first").value);
b=Number(document.getElementById("second").value);
c=a;
a=b;
b=c;
document.getElementById("answer1").value= a;
document.getElementById("answer2").value= b;
}
</script>
</head>
<body>
Value of a: <input id="first">
Value of b: <input id="second"></br></br>
<button onclick="swap()">Swap</button></br></br>
Value of a: <input id="answer1">
Value of b: <input id="answer2">
</body>
</html>

Output:




1 comment:

How To Create Image Gallery In Html

Hello Friend My Name Is Viraj,Today I Will Create Image Gallery And Display On A Webpage.The emergence of CSS3 technology has enabled web d...