-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (19 loc) · 749 Bytes
/
index.html
File metadata and controls
22 lines (19 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<title>Link Replacer</title>
<link rel="stylesheet" type="text/css" href="stylesheets/styles.css">
</head>
<body>
<textarea id="codeinput" autofocus placeholder="Paste HTML"></textarea>
<button id="replaceButton">Replace All URLs with: ${clickthrough} </button>
<button id="copyButton" data-clipboard-action="cut">Grab Code</button>
<br>
<br>
<div id="collectedLinks"></div>
<div id="pastedcode"></div>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="scripts/clipboard.js-master/dist/clipboard.js"></script>
<script type="text/javascript" src="scripts/script.js"></script>
</body>
</html>