WordMord/wordlist.html

35 lines
698 B
HTML
Raw Permalink Normal View History

2022-01-13 14:57:57 +01:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>
</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="workshoptext scroll" >
<div id="wordlist">
</div>
</div>
<script>
function httpGet(theUrl) {
var xmlHttp = new XMLHttpRequest();
xmlHttp.open("GET", theUrl, false); // false for synchronous request
xmlHttp.send(null);
return xmlHttp.responseText;
}
var wordlist = httpGet('https://pad.vvvvvvaria.org/WordMord.wordlists/export/html');
document.getElementById("wordlist").innerHTML = wordlist;
</script>
</body>
</html>