This page works great in the latest Explorer and mozilla:
http://www.liveskinny.com/beta/live/

...but when I load it in IE 6, it crashes on the deleteOption
function, which looks like this:

function deleteOption(box){
        var delCal = "date=" +
escape(box.parentNode.getElementsByTagName('input')[0].value) +
                        "&title=" + 
escape(box.options[box.options.selectedIndex].text);
        box.removeChild(box.options[box.options.selectedIndex]);
        calc(box.parentNode);
}

It's not the calc function, because it crashes even when I replace it
with:

alert(box.parentNode)

and if I re-arrange the last two commands (so it does the calc before
the child is removed) it won't crash (but then it serves stale data).

I know this has something to do with script.aculo.us, because it
doesn't crash when script.aculo.us isn't running.  Anyone else had
this problem?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Spinoffs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-spinoffs?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to