[Proto-Scripty] Re: Done but with errors on when page loads.

2011-10-28 Thread T.J. Crowder
On Oct 28, 2:31 pm, DeveloperDavid  wrote:
> Message: Object doesn't support this property or method

Have a read through this tutorial from the prototypejs.org site:
http://prototypejs.org/learn/extensions

Elements can be automagically extended on other browsers, but not IE.
You have to make sure you're dealing with an extended one. All
elements you get via Prototype are pre-extended for you, but if you
create or retrieve them via other means, they won't be. See the
article for details.
--
T.J. Crowder
Independent Software Engineer
tj / crowder software / com
www / crowder software / com

-- 
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 prototype-scriptaculous@googlegroups.com.
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en.



[Proto-Scripty] Re: Done but with errors on when page loads.

2011-10-28 Thread Victor
You are trying to invoke methods on not extended element in IE8, right? 
E.g. instead of $(element).fire("some:thing") you are using 
element.fire("some:thing").

-- 
You received this message because you are subscribed to the Google Groups 
"Prototype & script.aculo.us" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/prototype-scriptaculous/-/r1R5tMbY3zQJ.
To post to this group, send email to prototype-scriptaculous@googlegroups.com.
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en.