-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtext.htm
30 lines (28 loc) · 1.04 KB
/
text.htm
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>JavaScript Throttle vs Debounce | coderanx</title>
<meta name="Description" content="A web page without dependencies." />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta charset="utf-8" />
<link rel="stylesheet" href="styles.css" />
<!-- <script defer src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.15/lodash.min.js"></script> -->
<script type="text/javascript" defer src="commonCode.js"></script>
<script type="text/javascript" defer src="textCode.js"></script>
</head>
<body>
<h1>Throttle vs Debounce</h1>
<section id="container">
<div class="search">
<h1>Search <br />(Debounce)</h1>
<input id="search-input" type="text" />
<div id="search-log"></div>
</div>
<div class="autosave">
<h1>Autosave <br />(Throttle)</h1>
<textarea id="autosave-textarea" rows="4" cols="50"></textarea>
<div id="autosave-log"></div>
</div>
</section>
</body>
</html>