Whether you like it or else, this site uses cookies. On this site will rise... something. Words fail me. Thoughts fail me. Give me a kiss and enliven my inspiration. Hold me. Kiss my asinine comments. This is my website, and I am Loloy D.

Random fun stuff:

PhST Widget Implementation Test

The following widget implementation is an embedding on - https://oras.pagasa.dost.gov.ph/widget.shtml

The current script implementation has been as follows:

<div style="width:300px">
<script type="text/javascript">
	function iFrameHeight()
	{
		var h = 0;
		if (!document.all)
		{
			h = document.getElementById('blockrandom').contentDocument.height;
			document.getElementById('blockrandom').style.height = h + 60 + 'px';
		} else if (document.all)
		{
			h = document.frames('blockrandom').document.body.scrollHeight;
			document.all.blockrandom.style.height = h + 20 + 'px';
		}
	}
</script>

<iframe 	id="blockrandom"
	name="Philippine Standard Time"
	src="http://oras.pagasa.dost.gov.ph/widget.shtml"
	width="100%"
	height="95"
	scrolling="no"
	frameborder="0"
	class="wrapper" >
	No Iframes</iframe>
</div>