On Dec 4, 7:07 pm, jsnoob80 <[EMAIL PROTECTED]> wrote:
> Can anyone help me debug this?
>
> http://www.promoventures.com/clients/indexNEW.php

1: As noted in the previous reply, your {insertion: Insertion.Top} is
a deprecated notation. Unfortunately, some of the Prototype API docs
examples aren't updated, but in the description of passable options at
http://www.prototypejs.org/api/ajax/updater it does mention that as of
1.6, you can simply use {insert:'top'}

2. You're passing the insertion as a separate argument:
83 new Ajax.Updater(
84 'case_ajax',
85 'show-main.ajax.php?auto=' + auto,
86 {
87 asynchronous:true,
88 evalScripts:true,
89 // onComplete:function(request){Effect.SlideDown('case_ajax',
{ duration: 1.7 });}
90 },
91 {insertion: Insertion.Top}
92
93 )

Options argument starts at 86 and ends at 90. Line 91, the insertion,
should be passed inside the Options object. Though i'm not entirely
sure why Firefox is forgiving this and supposedly obeying the Top
insertion, it's probably why IE isn't.

On that note, what exactly is going wrong? Looking at the page in FF
and IE8b2 (normal and compatibility modes), there don't seem to be any
display issues, and no JS errors.
-joe t.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Prototype: Core" group.
To post to this group, send email to prototype-core@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/prototype-core?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to