Re: [Proto-Scripty] IE8 error, line 5974 - Object doesn't support this property or method

2012-06-11 Thread Walter Lee Davis
On Jun 11, 2012, at 2:45 AM, nbezzala wrote: The code I pasted is from prototype.js, and I didn't write the code. There seems to be an IE8 error, when prototype.js is defining getElementsByClassName. I just used magento, with wowslider, and got this error. I'm not sure where it is coming

[Proto-Scripty] IE8 error, line 5974 - Object doesn't support this property or method

2012-06-08 Thread nbezzala
I am using prototype version 1.7 on IE8. It works fine on Firefox and Opera. The error is in this line var nodes = $(element).getElementsByTagName('*'); Below is the code around it. / *-- */ if

Re: [Proto-Scripty] IE8 error, line 5974 - Object doesn't support this property or method

2012-06-08 Thread Jason Westbrook
Are you wanting to collect all of the child elements of $(element) ? try using $(element).childElements() but actually looking at the whole code it looks like you are defining getElementsByClassName - there is already functionality in prototype to do this $$(.classname) will return a list of

[Proto-Scripty] IE8 + Prototype AJAX = HTTP Status 12019

2011-12-15 Thread web_dev_ajax
I have a B2B web application that is developed on Struts JSP using Prototype JS library (version 1.4.0) for AJAX. I have a client running my application on IE8. She is intermittently getting the http status code of 12019 (this is an IE specific status code for

Re: [Proto-Scripty] IE8 + Prototype AJAX = HTTP Status 12019

2011-12-15 Thread Phil Petree
I would try using a later version of proto on just that page. On Dec 15, 2011 1:43 PM, web_dev_ajax lily.o...@gmail.com wrote: I have a B2B web application that is developed on Struts JSP using Prototype JS library (version 1.4.0) for AJAX. I have a client running my application on IE8. She is

[Proto-Scripty] IE8

2010-02-13 Thread bill
IE 8 chokes on line 16: line 16 is the line after var aw = window.innerWidth; script type=text/javascript function setsize() { // adjust divs var ah = window.innerHeight ; //alert (Setsize - ah = + ah); var aw = window.innerWidth; $('leftPane').style.height = '' + ((.99 *ah)-20 ) + 'px';

Re: [Proto-Scripty] IE8

2010-02-13 Thread Alex McAuley
- From: bill To: prototype-scriptaculous@googlegroups.com Sent: Saturday, February 13, 2010 12:20 PM Subject: [Proto-Scripty] IE8 IE 8 chokes on line 16: line 16 is the line after var aw = window.innerWidth; script type=text/javascript function setsize() { // adjust divs var

Re: [Proto-Scripty] IE8

2010-02-13 Thread bill
On 2/13/2010 8:05 AM, Alex McAuley wrote: you dont need the quote before hand ... $('leftPane').style.height = '' + ((.99 *ah)-20 ) + 'px'; //this is line 16 into $('leftPane').style.height = Math.round(( ( .99 * ah ) -20 )) + 'px'; //this is line 16 I thought the quotes were needed to

Re: [Proto-Scripty] IE8

2010-02-13 Thread Alex McAuley
alert(ah); and try 0.99 instead of .99 Alex Mcauley http://www.thevacancymarket.com - Original Message - From: bill To: prototype-scriptaculous@googlegroups.com Sent: Saturday, February 13, 2010 1:32 PM Subject: Re: [Proto-Scripty] IE8 On 2/13/2010 8:05 AM, Alex McAuley

[Proto-Scripty] IE8 Invalid argument @ setStyle function

2009-11-11 Thread Mostafa
Hi, i have a problem when working with iGoogle style drag and drop portlets on ie8 my code runs with no problems on FF, Chrome, Safari and IE7 But on IE8 the widgets do not work when dropped and give the error Invalid argument.. i digged alot and knew that the problem is in the function

[Proto-Scripty] IE8 responseXML ?

2009-09-16 Thread Jason Frisvold
Hi, I'm running into a problem with IE8 and responseXML. Code follows : var url = 'http://example.com/myfile.php'; function update_parent() { var root = 1; var myAjax = new Ajax.Request(url, { method: 'get',

[Proto-Scripty] IE8 not extending Elements?

2009-09-11 Thread joe t.
During my dom:loaded event, all browsers except IE8 are working correctly. http://pastie.org/613517 http://comet.sawyernursery.com Error 1 (line 4): IE Debugger says $('splash') is valid DispHTMLDivElement, but $('splash').select is undefined. Error 2 (line 30): $('GoToPageTop') is

[Proto-Scripty] IE8 getOpacity is ALMOST correct

2009-09-01 Thread Mojito
I did an Effect.Fade() on an element to opacity 0.3. Then I check that element's opacity with $('element').getOpacity(). It returns 0.3 in Firefox, but returns 0.3004 in IE8. My application kind of depends on a predictable value. Is this a problem with IE's JS engine or is this a

[Proto-Scripty] IE8 invalid argument line 4501

2009-07-14 Thread adamski
We're now going through the enjoyable task of getting our app working in IE, 6-8 we are aiming for. We just downloaded the latest prototype RC3, which seems to fix a few errors, however, I am getting this error on page load, IE8 only: Message: Invalid argument. Line: 4501 Char: 9 Code: 0 URI:

[Proto-Scripty] IE8 and Position.clone (prototype 1.4) and Element.clonePosition (prototype 1.6)

2009-03-24 Thread ced
I had a problem cloning position with prototype 1.4 and 1.6 in ie8 don't know exactly why it behaves like this.. but that's my solution: hope it could be useful: In 1.4 I changed this if (Element.getStyle(target,'position') == 'absolute') { parent = Position.offsetParent(target);

[Proto-Scripty] IE8 compatibility

2009-03-19 Thread masterleep
Is there a released version of Prototype / Scriptaculous that supports the now-final IE8? I am getting some errors inside Prototype in that browser. Some perusal of bug reports leads me to believe that possibly Prototype doesn't support IE8 yet. For example: