-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (24 loc) · 1.16 KB
/
index.html
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>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Jelly SQL</title>
</head>
<body>
<div id="app">
<!-- Test Compound Expression Selectors (Basic) -->
<div hidden>
<a href="https:\\www.jellysql.com" target="_blank"> HREF Only </a>
<a href="https:\\www.jellysql.com" onclick="someFunc('https:\\www.jellysql.com')"> HREF and OnClick </a>
<a onclick="someFunc('https:\\www.jellysql.com')"> OnClick Only </a>
<button href="https:\\www.jellysql.com" target="_blank">HREF Only</button>
<button href="https:\\www.jellysql.com" onclick="someFunc('https:\\www.jellysql.com')">HREF and OnClick</button>
<button onclick="someFunc('https:\\www.jellysql.com')">OnClick Only</button>
</div>
</div>
<script type="module" src="/src/index.ts"></script>
<script type="module" src="/src/localTesting.ts"></script>
</body>
</html>