Marc Jansen schrieb:
> Hi list,
>
> I'm not sure whether this has already been discussed, but in the
> uncompressed version of the jQuery code my FF-console shows the
> following error:
>
> Fehler: this.stack has no properties
> Quelldatei:
> http://www.rsv-arloff-kirspenich.de/javascript/jquery-1.0.3.pack.js
> Zeile: 191
>
> This line his meant:
>
> end: function() {
> return this.get( this.stack.pop() );
> },
>
> This is the jQuery information possibly needed:
>
> /*
> * jQuery 1.0.3 - New Wave Javascript
> *
> * Copyright (c) 2006 John Resig (jquery.com)
> * Dual licensed under the MIT (MIT-LICENSE.txt)
> * and GPL (GPL-LICENSE.txt) licenses.
> *
> * $Date: 2006-10-27 11:15:44 -0400 (Fri, 27 Oct 2006) $
> * $Rev: 501 $
> */
>
>
> How can I remove this?
>
> Thanks in advance,
>
> Marc
Hi Marc,
I got this error when calling end() too often. Consider this:
var jqDiv = $('div').find('p');
// do something
jqDiv.end(); // reset
If you write:
jqDiv.end().end();
That would give me the same error (this.stack has no properties).
Maybe that's the same in your code as well...
-- Klaus
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/