-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex1.php
More file actions
36 lines (30 loc) · 814 Bytes
/
index1.php
File metadata and controls
36 lines (30 loc) · 814 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
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<h1></h1>
<!-- <button onclick="document.getElementById('change').style='color:green'">Click</button>
<span id="change" style="color: red">Hello Bangladesh</span> -->
<button type="button" id="click">Click</button>
<h3 id="name"></h3>
<script src="main.js"></script>
<!-- <script>
document.getElementById("demo").innerHTML = "My First JavaScript";
document.getElementById('demo').innerHTML=objectFuntion.calculation;
</script> -->
<div id="click"></div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$('#click').click(event=>{
show(10);
})
function show(test){
for(var i=1;i<=test;i++){
console.log(i);
}
}
</script>
</body>
</html>