jump to navigation

StyleSheet Switcher October 01 2004

I’ve been playing around with the StyleSheet Switcher, its pretty nifty.

Visit the ALA article for info about this fun resource.

Now I must get some style….and use it.

XHTML Valid September 28 2004

All this time I thought this blog was valid XHTML… Turns out I should have checked after each post as there were errors everywhere.

A word to the wise bloggers!

Check your blog after every post for valid XHTML, this will reduce headaches in the future!

IFRAME Reference June 10 2004

This entry describes how to reference a form element from within an IFRAME.

e.g.

An HTML page with a form and an IFRAME.

Within the IFRAME is a hyperlink that should change the contents of the form element in the parent window.

=== BEGIN PARENT ===

<form name=”frmParent”>
<INPUT TYPE=”text” name=”txtText” value=”"/>
</form>

<IFRAME width=”100%” SRC=”iframe_test_child.html” ID=”myIframe”/>
Your browser does not support IFRAMES
</IFRAME>

=== END PARENT ===

=== BEGIN CHILD ===

<script language=”javascript”>
function ParentReference() {
parent.frmParent.txtText.value = “IFRAME TEXT”;
}
</script>
<body>
<a href=”javascript:ParentReference()”>Reference The Parent</a>
</body>

=== END CHILD ===

« newer posts |