Skip to content

Instantly share code, notes, and snippets.

@bloqhead
Created October 10, 2013 03:44
Show Gist options
  • Save bloqhead/6912727 to your computer and use it in GitHub Desktop.
Save bloqhead/6912727 to your computer and use it in GitHub Desktop.
<script type="text/javascript">
$(function(){
if (/iPhone|iPod|iPad/.test(navigator.userAgent))
$('iframe').wrap(function(){
var $this = $(this);
return $('<div />').css({
width: $this.attr('width'),
height: $this.attr('height'),
overflow: 'auto',
'-webkit-overflow-scrolling': 'touch'
});
});
})
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment