init commit

This commit is contained in:
zino
2021-02-16 23:07:41 +01:00
parent ec3fc78e0f
commit 12b4ef5db4
5000 changed files with 2596132 additions and 0 deletions

View File

@@ -0,0 +1,55 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery load() Demo</title>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://extension-files.twitch.tv/helper/v1/twitch-ext.min.js"></script>
</head>
<body>
<!--<div id="box">-->
<!-- <h2>Click button to load new content inside DIV box</h2>-->
<!--</div>-->
<!--<button type="button">Load Content</button>-->
<script>
$(document).ready(function() {
// $('html').load("https://zinomedia.de/wp_hq");
$('body').load("https://zinomedia.de/wp_hq/pkrstarsbotextension");
// $("button").click(function() {
// $('body').load('https://zinomedia.de/wp_hq/pkrstarsbot/index.php body');
// $('body').load("https://zinomedia.de/wp_hq/pkrstarsbotextension");
// $.get("https://zinomedia.de/wp_hq/pkrstarsbot body", function(data) {
// $("body").replaceWith(data);
// });
// $.ajax({
// url: "https://zinomedia.de/wp_hq/pkrstarsbot",
// success: function(data) {
// $(data).contents().appendTo("body");
// }
// });
// $.get('https://zinomedia.de/pokerstarsbot/', {}, function(data) {
// var data = data.replace('<body', '<body><div id="body"').replace('</body>', '</div></body>');
// var body = $(data).filter('#body');
// //... do what you want with body ...
// });
// });
});
</script>
</body>
</html>