Last active
May 12, 2017 12:09
-
-
Save ikwattro/98a8c1d5bcab1b8f57f65717d5f4f188 to your computer and use it in GitHub Desktop.
testmarklet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $("body") | |
| .append($('<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>')) | |
| .append($('<link href="https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.css" rel="stylesheet" type="text/css">')) | |
| .append($('<script src="https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script>')) | |
| .append($('<script src="https://cdn.datatables.net/1.10.13/js/jquery.dataTables.min.js"></script>')) | |
| .append($('<script src="https://cdn.rawgit.com/anvaka/panzoom/v1.2.1/dist/panzoom.min.js"></script>')) | |
| .append($('<link href="https://cdn.datatables.net/1.10.13/css/jquery.dataTables.min.css" rel="stylesheet" type="text/css">')) | |
| ; | |
| function augmentFrame() { | |
| $(".outer").each(function() { | |
| var frame=$(this); | |
| frame.find(".slide > .guide > container-fluid > row").each(function(e) { | |
| console.log(e); | |
| }); | |
| })}; | |
| setInterval(augmentFrame,1000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment