seangates's blog

Postable

This little AJAX tool converts your HTML-ish code (and sometimes PHP code) for you. I just used it for this site and it is handy. Converts to HTML entities so you don't have to go through and add < and > to your tags, as well as & gets changed to &, etc.

http://www.elliotswan.com/postable/

Sean

Stop the Balthaser Patent

Please visit and sign.

http://www.petitionspot.com/petitions/balthaser

Thank you,
Sean Gates

Cross Frame AJAX Scripting Using Iframes

I'm not sure how many of you are doing AJAX development, but this may be helpful to someone.

I have been working on a fun project at my full-time job, and came across a difficult situation: I needed to update the parent frame's form from a child iframe, and needed to still use the prototype javascript library shortcuts.

Here's what I mean:

Parent page --

<html>
<head>
<script src='prototype.js'... ></script>
<script>
Form.disable('myform');
</script>
</head>
<body>
<iframe ... ></iframe>
<form id='myform' name='myform' ... >

Syndicate content