Prototype Problem

I’m attempting a Insertion.Bottom operation on a table I’m working on.
Unfortunately, I’m running into a browser problem. The code works
perfectly in Firefox, but fails in IE.

Here is the simple code:

function ProcessForm()
{
newname = $F(‘name’);
newloc = $F(‘location’);
html = ‘

# ’+newname+’ ’+newloc+’ ’;
new Insertion.Bottom( ‘People’, html );
}

The table looks like this:

id name location
1 Josh C. Kansas City, MO
2 Tara Craven Kansas City, MO

I’m sort of at a loss here. Any ideas what might be happening?

Josh

You need a

for it to work in IE.