that seems to have fixed that. Thanks. I know that this may not be appfuse
but you may know the answer. When i run firefox i get an "element has no
properties" which doesn't stop the application from running. however when i
run it under IE it does stop and cause an error on the following line in
prototype.js


  _observeAndCache: function(element, name, observer, useCapture) {
    if (!this.observers) this.observers = [];
    if (element.addEventListener) {  ****************************THIS IS THE
LINE*******
      this.observers.push([element, name, observer, useCapture]);
      element.addEventListener(name, observer, useCapture);
    } else if (element.attachEvent) {
      this.observers.push([element, name, observer, useCapture]);
      element.attachEvent('on' + name, observer);
    }
  },
    if (element.addEventListener) {



mxb wrote:
> 
> no. i will place it and see what happens. thanks.
> 
> 
> mraible wrote:
>> 
>> Do you still reference global.js in your project? This is the file
>> that has the getCookie function.
>> 
>> Matt
>> 
>> On 1/17/08, mxb <[EMAIL PROTECTED]> wrote:
>>>
>>> Hi,
>>>
>>> I am getting an error in IE (object required) on the line below which is
>>> in
>>> the login.js
>>>
>>> getCookie("username") != null)
>>>
>>> In Firefox it occurs however the browser just ignores it. I am using a
>>> Javascript obfuscator (JCEPro) although i have told it not to obfuscate
>>> getCookie.
>>>
>>> Can anyone help.
>>>
>>> Thanks.
>>> --
>>> View this message in context:
>>> http://www.nabble.com/Error-using-IE-on-GetCookie-tp14915327s2369p14915327.html
>>> Sent from the AppFuse - User mailing list archive at Nabble.com.
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: [EMAIL PROTECTED]
>>> For additional commands, e-mail: [EMAIL PROTECTED]
>>>
>>>
>> 
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: [EMAIL PROTECTED]
>> For additional commands, e-mail: [EMAIL PROTECTED]
>> 
>> 
>> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Error-using-IE-on-GetCookie-tp14915327s2369p14916815.html
Sent from the AppFuse - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to