Hi, When calling any of Prototype's extensions on an element, make sure you've gotten that element reference from a Prototype function. If you're unsure about an element reference, just pass it through $ before using it -- half of $'s purpose is to ensure that the extensions are in place on the element.
This error shows up on IE and not other browsers because on most browsers, Prototype can *automatically* add its extensions to elements. But not on IE, on IE we have to manually extend each and every element. Prototype does that for you (just about) any time you pass an element through it, but if you've gotten the element directly from the DOM, you need to pass it through $. More here, although it's getting a bit dated: http://prototypejs.org/learn/extensions HTH, -- T.J. Crowder Independent Software Consultant tj / crowder software / com www.crowdersoftware.com On May 12, 6:44 am, willsloan <[email protected]> wrote: > Here's the error that the JavaScript debugger is giving me: > > Webpage error details > > User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/ > 4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR > 3.0.30729; Media Center PC 6.0; InfoPath.2; Tablet PC 2.0; Creative > AutoUpdate v1.40.01) > Timestamp: Wed, 12 May 2010 05:41:41 UTC > > Message: Object doesn't support this property or method > Line: 636 > Char: 3 > Code: 0 > URI:http://supportnashville.willsloan.com/wp-content/themes/supportnashvi... > > Any suggestions on how to resolve this? > > -- > 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 > athttp://groups.google.com/group/prototype-scriptaculous?hl=en. -- 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.
