From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from qmta06.westchester.pa.mail.comcast.net (qmta06.westchester.pa.mail.comcast.net [IPv6:2001:558:fe14:43:76:96:62:56]) by hurricane.the-brannons.com (Postfix) with ESMTP id CF49B779BE for ; Wed, 7 May 2014 15:55:10 -0700 (PDT) Received: from omta20.westchester.pa.mail.comcast.net ([76.96.62.71]) by qmta06.westchester.pa.mail.comcast.net with comcast id zAnE1n0021YDfWL56AuUN2; Wed, 07 May 2014 22:54:28 +0000 Received: from eklhad ([IPv6:2601:4:5380:92e:21e:4fff:fec2:a0f1]) by omta20.westchester.pa.mail.comcast.net with comcast id zAuU1n00e58M3EY3gAuUN4; Wed, 07 May 2014 22:54:28 +0000 To: Edbrowse-dev@lists.the-brannons.com From: Karl Dahlke User-Agent: edbrowse/3.5.1 Date: Wed, 07 May 2014 18:54:27 -0400 Message-ID: <20140407185427.eklhad@comcast.net> Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=comcast.net; s=q20140121; t=1399503268; bh=FeO9CWrlpNhkqgVl9QY83phbukaGm6ExpgaooZWBxi8=; h=Received:Received:To:From:Reply-to:Subject:Date:Message-ID: Mime-Version:Content-Type; b=bt2rWLHluL+huR69LI6tulPq0UHFY+NUQBkFHi+jROrgIc+ui2YY0k9C66bhH5eHW 5cIchT0CavwV27tsiTgnDV2N3z8nforY9IoeC/LxbLYTf+8Xznk7bq6Y6GLqGULOML Hf3az7cwDQpfrMXUMMu1M9+tYSxUvVRoYwkCpJMuCTvCzmdaz7Wx3cuclc8R+XwlKX Oz6C9B5PknLoAZHXLvKOj7edoSVf75g4EGzKY7tt5LeqqP9d1R2xNbIBXSKRNfDQXH mUEqX7x3hTn/RSw5LcXttB9ecbSijXj+nfbgZX8fFm476HvqM8q2u9fK6gmTM1UeXl m+T8puVSrm01g== Subject: [Edbrowse-dev] jQuery X-BeenThere: edbrowse-dev@lists.the-brannons.com X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Karl Dahlke List-Id: Edbrowse Development List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 May 2014 22:55:11 -0000 > Hello - I am Kevin - I appreciate being able to lurk on the list Please continue to read and post, it is quite helpful, and perhaps you will join the development team if you find time. You may want to get and use 3.5.1, even though that is not an official version release yet. A lot of changes there; the required change of supporting mozjs 24, but also new features. One is attachEvent(), which you aluded to in your post. This is plain js, not jquery, but jquery may well use this feature to atttach events to actions. So pages that would attach a javascript function to a click or a load will now do something whereas they did nothing before. parentNode is also new; I try to connect each node to its parent when created. This is relevat to your description of the document tree, and yes web js uses and expects and even modifies this tree all over the place; we have to support it! If I am doing the parentnode properly, it would not be too hard to add in the reverse logic to build the child node links. Then write the functions to add new nodes into the tree dynamically. This is all moving forward, I think, in the right direction, but slowly, as it's just a couple of volunteers with some spare time. Let me know if you can get, build, and use the latest, and if you have further thoughts on design and development. Karl Dahlke