From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out.smtp-auth.no-ip.com (out.smtp-auth.no-ip.com [8.23.224.60]) by hurricane.the-brannons.com (Postfix) with ESMTPS id D656D7891B for ; Wed, 2 Dec 2015 19:11:41 -0800 (PST) X-No-IP: carhart.net@noip-smtp X-Report-Spam-To: abuse@no-ip.com Received: from carhart.net (unknown [99.52.200.227]) (Authenticated sender: carhart.net@noip-smtp) by smtp-auth.no-ip.com (Postfix) with ESMTPA id 2404F4007DC; Wed, 2 Dec 2015 19:13:10 -0800 (PST) Received: from carhart.net (localhost [127.0.0.1]) by carhart.net (8.13.8/8.13.8) with ESMTP id tB33D9k7005880; Wed, 2 Dec 2015 19:13:09 -0800 Received: from localhost (kevin@localhost) by carhart.net (8.13.8/8.13.8/Submit) with ESMTP id tB33D9Vu005873; Wed, 2 Dec 2015 19:13:09 -0800 Date: Wed, 2 Dec 2015 19:13:08 -0800 (PST) From: Kevin Carhart To: Chris Brannon cc: Karl Dahlke , edbrowse-dev@lists.the-brannons.com In-Reply-To: <87k2owqml2.fsf@mushroom.localdomain> Message-ID: References: <87vb8gra8x.fsf@mushroom.localdomain> <20151102150116.eklhad@comcast.net> <87k2owqml2.fsf@mushroom.localdomain> User-Agent: Alpine 2.03 (LRH 1266 2009-07-14) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: Re: [Edbrowse-dev] 3.6.0? X-BeenThere: edbrowse-dev@lists.the-brannons.com X-Mailman-Version: 2.1.20 Precedence: list List-Id: Edbrowse Development List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Dec 2015 03:11:41 -0000 Thanks Chris! Here is the teaser. In the just-submitted-to-Karl, if I compile it right now, I can load a page with jquery 1.9.1, then go to edbrowse jdb mode and echo the jquery object and it returns the following, which is the verification that jquery found all its mandatory prerequisites and 'compiled': --- function ( selector, context ) { // The jQuery object is actually just the init constructor 'enhanced' return new jQuery.fn.init( selector, context, rootjQuery ); } --- And then if I do the object keys enumerator on that, it returns the whole long litany of jquery methods and properties that pages may be expecting to find: --- ok($) fn,extend,noConflict,isReady,readyWait,holdReady,ready,isFunction, isArray,isWindow,isNumeric,type,isPlainObject,isEmptyObject,error, parseHTML,parseJSON,parseXML,noop,globalEval,camelCase,nodeName, each,trim,makeArray,inArray,merge,grep,map,guid,proxy,access,now, Callbacks,Deferred,when,support,cache,expando,noData,hasData, --- And it goes on like that for several more lines! There are later versions of jquery than 1.9.1, which introduce yet another cute library-within-a-library called Sizzle. We don't have that yet, but hopefully the present work will open up a swath of pages! Kevin