this must be the comma after the last item in your array below
----------------
[
new Effect.Appear(this.el_id_photoAlbumsSelectorDisplayMatte,
{sync:true, "to":0.76 }),
new Effect.Appear(this.el_id_photoAlbumsSelectorDisplayBtn,
{sync:true, "to":0.88 }),
],
----------------
somehow all browsers BUT IE ignore this trailing comma.
cheers
--
mona
On Wed, Sep 23, 2009 at 2:41 PM, Daniel Rubin <[email protected]> wrote:
>
> KammylandSoftware wrote:
>> Also, I didn't mention something in the original post for this thread.
>>
>> The browser error always points to the following block of code in the
>> Prototype.js file:
>>
>> var Enumerable = (function() {
>> function each(iterator, context) {
>> var index = 0;
>> try {
>> this._each(function(value) {
>> iterator.call(context, value, index++);
>> });
>> } catch (e) {
>> if (e != $break) throw e;
>> }
>> return this;
>> }
>>
>> It points to the line where the " } catch (e) { " statement is.
>>
>> Any help, anyone?
> Hi,
>
> the exception probably originates from your iterator function. I don't
> know about IE8 specifically, but I see the same behaviour with IE7 when
> "throwing on" exceptions.
>
> Do you have any idea which invocation of each() breaks?
>
> Otherwise, you'd have to track that down first, and then investigate it.
>
> Best of luck
> ----Daniel
>
>
> >
>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Prototype & script.aculo.us" 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/prototype-scriptaculous?hl=en
-~----------~----~----~----~------~----~------~--~---