I have this iframe on my website that can test your internet speed.
It has a callback function after the test is finished. This function can show various object properties. It now looks like this:
<script type="text/javascript">
function nPerfTestCompletedObj(object) {
document.write(object.id);
}
</script>
Problem is that this way it shows the object id on a new blank page.
Anybody can help me out how to show the result below the iframe after the function is finished?