Last active
December 16, 2015 04:29
-
-
Save davidsan/5377952 to your computer and use it in GitHub Desktop.
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>test</title> | |
| </head> | |
| <body> | |
| <script type="text/javascript" src="http://www.openrunner.com/orservice/inorser-script.php?key=mykey&ser=S01&id=2343179&w=500&h=351&k=5&m=0&ts=1365619227"></script> | |
| <div id='openrunner'> | |
| </div> | |
| </body> | |
| </html> |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>test</title> | |
| <script type="text/javascript"> | |
| window.onload=function(){ | |
| // document.domain="http://www.openrunner.com"; | |
| var url = "http://www.openrunner.com/orservice/inorser-script.php?key=mykey&;ser=S01&;id=2343179&;w="+500+"&;h="+350+"&;k=5&;m=0&;ts=1365617903"; | |
| var openrunner_node = document.getElementById('openrunner'); | |
| var script = document.createElement('script'); | |
| script.setAttribute("type","text/javascript"); | |
| script.setAttribute("src", url); | |
| //script.onload(openrunner_node.appendChild(script)); | |
| openrunner_node.appendChild(script); | |
| } | |
| </script> | |
| </head> | |
| <body> | |
| <!--script type="text/javascript" src="http://www.openrunner.com/orservice/inorser-script.php?key=mykey&ser=S01&id=2343179&w=500&h=351&k=5&m=0&ts=1365619227"></script--> | |
| <div id='openrunner'> | |
| </div> | |
| </body> | |
| </html> |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>test</title> | |
| <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script> | |
| <script type="text/javascript"> | |
| window.onload=function(){ | |
| var url = "http://www.openrunner.com/orservice/inorser-script.php?"; | |
| $.ajax({ | |
| type:"GET", | |
| url:url, | |
| data: "?key=mykey&;ser=S01&;id=2343179&;w="+500+"&;h="+350+"&;k=5&;m=0&;ts=1365617903", | |
| dataType:"text", | |
| success: function(resp){ | |
| alert(resp); | |
| } | |
| }); | |
| var openrunner_node = document.getElementById('openrunner'); | |
| var script = document.createElement('script'); | |
| script.setAttribute("type","text/javascript"); | |
| script.setAttribute("src", url); | |
| script.onload(openrunner_node.appendChild(script)); | |
| //openrunner_node.appendChild(script) | |
| } | |
| </script> | |
| </head> | |
| <body> | |
| <!--script type="text/javascript" src="http://www.openrunner.com/orservice/inorser-script.php?key=mykey&ser=S01&id=2343179&w=500&h=351&k=5&m=0&ts=1365619227"></script--> | |
| <div id='openrunner'> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment