-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjs10.html
More file actions
30 lines (26 loc) · 669 Bytes
/
Copy pathjs10.html
File metadata and controls
30 lines (26 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!--JavaScript program to convert given string to uppercase and lowercase-->
<!DOCTYPE html>
<html>
<head>
<title>js10</title>
</head>
<body>
<input type="textbox" id="ipt">
<br><br>
<input type="button" value="upper" name="upper case" onclick="upper()">
<input type="button" value="lower" name="lower case" onclick="lower()">
<div id="opt"></div>
<script type="text/javascript">
function lower()
{
var str=document.getElementById("ipt").value;
document.getElementById("opt").innerHTML=str.toLowerCase();
}
function upper()
{
var str=document.getElementById("ipt").value;
document.getElementById("opt").innerHTML=str.toUpperCase();
}
</script>
</body>
</html>