Skip to content

Instantly share code, notes, and snippets.

@benknight
Last active December 14, 2015 19:19
Show Gist options
  • Save benknight/5135874 to your computer and use it in GitHub Desktop.
Save benknight/5135874 to your computer and use it in GitHub Desktop.
Append Grapper to the bottom half of the window
var grapper = document.createElement('iframe');
grapper.id = 'grapper';
grapper.src = 'http://dev16.706.yelpcorp.com:4773/';
document.body.appendChild(grapper);
#grapper {
position: fixed;
z-index: 9999;
bottom: 0;
left: 0;
width: 100%;
height: 70%;
border: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment