Skip to content

Instantly share code, notes, and snippets.

@themorgantown
Created August 9, 2012 20:17
Show Gist options
  • Save themorgantown/3307721 to your computer and use it in GitHub Desktop.
Save themorgantown/3307721 to your computer and use it in GitHub Desktop.
Enable scrolling on iframes in iOS
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<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