seangates's blog
Postable
Submitted by seangates on Thu, 2006-03-30 23:45.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
Submitted by seangates on Tue, 2006-03-14 20:23.Cross Frame AJAX Scripting Using Iframes
Submitted by seangates on Tue, 2006-03-07 18:07.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' ... >
