Cyrus wrote:
> Hi,
>
> I am testing the latest IE8 version and found an error in prototype.
>
> Creating an element with new Element and assigning inline a class, it
> is not working.
>
I can confirm this.
Incorrect behaviour is with the fallowing syntaxes:
var green = new Element('div', {
'id' : 'green',
'class' : 'green'
}).update('green');
$$('body')[0].insert(green);
var blue = new Element('div', {
id : 'blue',
className : 'blue'
}).update('blue');
$$('body')[0].insert(blue);
This is on IE 8.0.6001.18372, known as Release Candidate 1.
Regards,
SWilk
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---