Created
March 20, 2017 16:44
-
-
Save Shuumatsu/8ad22262a4d0e2e604298097d882b53b to your computer and use it in GitHub Desktop.
JSONP
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
<div id="data"></div> | |
<body> | |
<script> | |
const div = document.querySelector('div') | |
const print = arg => div.insertAdjacentText('beforeend', arg) | |
</script> | |
<script src="https://en.wikipedia.org/w/api.php?action=opensearch&format=json&callback=print&search=google"></script> |
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
* { | |
box-sizing: border-box; | |
} | |
#data { | |
padding: 16px; | |
position: absolute; | |
left: 50%; | |
top: 50%; | |
transform: translate3d(-50%, -50%, 0); | |
width: 100%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment