Newer
Older
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
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en" ufr>
<head>
<meta charset="UTF-8">
<title>UFR example</title>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="script.js"></script>
</head>
<style>
#lista{
width:350px;
margin-top: 30px;
margin-left: 30px;
}
k {
color: #ff0015;
}
#response {
margin-top: 30px;
margin-left: 30px;
}
</style>
<body onload="load()">
<input list="functions" name="func" id="lista" onkeyup="onenter(event)" oninput="change(event)">
<datalist id="functions">
</datalist>
<button id="btn" onclick="onclickbutton()">Send</button>
<h4 style="display: inline;" id="arguments"></h4>
<div id="response"></div>
</body>
</html>