[Prototype-core] Re: IE Bug

2008-10-22 Thread SWilk

Karthik wrote:
 I am getting error in IE Browser for this line
 newDivObj.addClassName(
 addClassName is not working in IE Browsers including IE 7.0.

Hi,

This group is used for prototype.js' development and not for support 
questions.
Next time please ask for help at prototype users group [1].

Your question is answered in prototype unofficial wiki[2].


[1] http://groups.google.com/group/prototype-scriptaculous
[2] 
http://proto-scripty.wikidot.com/prototype:object-doesn-t-support-this-property-or-method

-- 
Regards,
Szymon Wilkołazki

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Prototype: Core group.
To post to this group, send email to prototype-core@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/prototype-core?hl=en
-~--~~~~--~~--~--~---



[Prototype-core] Re: IE bug still there..

2007-10-12 Thread metavida

Actually, this is fixed in subversion. The correct code is:

document.write(script id=__onDOMContentLoaded defer src=//:\/
script);

see: 
http://groups.google.com/group/prototype-core/browse_frm/thread/f0766d012d2c2192/852271ba1073aa0a

On Oct 8, 4:30 am, Ihárosi Wiktor [EMAIL PROTECTED] wrote:
 On 10/8/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

  should be

  4014: src='http://javascript:void(0)'\/script);

  I forget what brings up the error but.. :) fix! #3

 no :) there is no javascript and http at all.
 this it the right way to work with https. (afaik)

 it should be as dean wrote:

   @MSIE.+win: {
 init: function() {
   this.base();
   // Matthias Miller/Mark Wubben/Paul Sowden/Me
   document.write(script id=__ready defer src=//:\/script);
   document.all.__ready.onreadystatechange = function() {
 if (this.readyState == complete) {
   this.removeNode(); // tidy
   DOMContentLoaded.fire();
 }
   };
 }
   },

 source:http://base2.googlecode.com/svn/trunk/lib/src/base2-dom.js

 best,

 w


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Prototype: Core group.
To post to this group, send email to prototype-core@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/prototype-core?hl=en
-~--~~~~--~~--~--~---



[Prototype-core] Re: IE bug still there..

2007-10-08 Thread Ihárosi Wiktor

On 10/8/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 should be

 4014: src='http://javascript:void(0)'\/script);

 I forget what brings up the error but.. :) fix! #3

no :) there is no javascript and http at all.
this it the right way to work with https. (afaik)

it should be as dean wrote:

  @MSIE.+win: {
init: function() {
  this.base();
  // Matthias Miller/Mark Wubben/Paul Sowden/Me
  document.write(script id=__ready defer src=//:\/script);
  document.all.__ready.onreadystatechange = function() {
if (this.readyState == complete) {
  this.removeNode(); // tidy
  DOMContentLoaded.fire();
}
  };
}
  },

source: http://base2.googlecode.com/svn/trunk/lib/src/base2-dom.js

best,

w

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Prototype: Core group.
To post to this group, send email to prototype-core@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/prototype-core?hl=en
-~--~~~~--~~--~--~---