Css 4
Css 4
Code:
<!DOCTYPE html>
<html>
<head>
<input type="button" value="click me" onclick="disp()">
<title>Function in js</title>
<script type="text/javascript">
function disp() {
document.write("hello_world");
}
</script>
</head>
</html>
Code:
<html>
<h1> Funtion with args</h1>
<input type="button" value="click me" onclick="disp(r)">
<script type="text/javascript">
var r=prompt("enter the radius");
function disp(r)
{
var a;
a = 3.14 * r * r ;
document.write(a);
}
</script>
</html>
<!DOCTYPE html>
<html>
<head>
<title></title>
<script type="text/javascript">
function disp() {
return "welcome to gramin";
}
document.write(disp());
</script>
</head>
</html>