I am new to Hype coming from Edge Animate. So far Hype seems absolutely great. I need to get the content from a wordpress page into an iframe in a hype document on iOS. I’ve got it working fine on a mac based browser (Safari or Chrome) using the code below in and html widget in Hype. But it does’t work using Hype Reflect on an iPad. The hype documents loads but the iframe does not show the web based content. Any help would be greatly appreciated.
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.1.min.js"></script>
<script>
$(document).ready(function(){
$.ajax({
url: "http://www.contemporaryguitarcollective.org/wp-json/wp/v2/posts?id=1",
success: function( result ) {
$('#temp').html(result[0].content.rendered);
}
});
});
</script>
</head>
<body>
<div id="temp">test</div>