[jQuery] unsubscribe

2009-07-15 Thread jake dimano

[jQuery] Re: new plugin: miniZoomPan

2009-06-19 Thread jake dimano
I must say...very very nice. jake On Fri, Jun 19, 2009 at 6:16 AM, GianCarlo Mingatigiancarlo.ming...@gmail.com wrote: Hello everyone, during the initial phase in the development of amuch more complex zommpan widget, i ended up with this tiny (yet another) zoompan plugin. Since it's small

[jQuery] Re: text of first sibling of a parent...How do I get it

2009-06-04 Thread jake dimano
thats gonna work out. 2009/6/3 jake dimano jakedim...@gmail.com Mauricio and Ricardo, I applied all the suggestions, parent(), parents() and all the other functions, but still to no avail.  The weird thing is that when I strip out all the styles, attributes and events from the elements

[jQuery] Re: text of first sibling of a parent...How do I get it

2009-06-03 Thread jake dimano
Mauricio, your code basically works fine on a simple test page. But there is something about my set-up that makes the bit about .parents('table') fail. My page still has the same exact element structure with 2 differences; there are 52 trs in the table; also, all the elements (tables, trs, tds,

[jQuery] Re: text of first sibling of a parent...How do I get it

2009-06-03 Thread jake dimano
(myText); The TR is really the parent of the TDs, not the table. On Jun 3, 7:33 am, jake dimano jakedim...@gmail.com wrote: Mauricio, your code basically works fine on a simple test page.  But there is something about my set-up that makes the bit about .parents('table') fail.  My page still has

[jQuery] Re: text of first sibling of a parent...How do I get it

2009-06-03 Thread jake dimano
().prevAll(':last').text(); HTH :) On Jun 3, 6:33 am, jake dimano jakedim...@gmail.com wrote: Mauricio, your code basically works fine on a simple test page.  But there is something about my set-up that makes the bit about .parents('table') fail.  My page still has the same exact element

[jQuery] Re: text of first sibling of a parent...How do I get it

2009-06-03 Thread jake dimano
the element itself. On Jun 3, 1:01 pm, jake dimano jakedim...@gmail.com wrote: Yes, that is the first thing I did, to no avail. I think all I am left with just trudging through this with pure javascript. jake On Wed, Jun 3, 2009 at 11:20 AM, BigAB adamlbarr...@gmail.com wrote: have you tried

[jQuery] Re: disabling all click events on all DOM elements for a small bit of time

2009-05-28 Thread jake dimano
Thank you Ameen, jQuery and its plug-in blockUI does this already (other javascript/css libraries do this as well.) But I must confess, not paying attention to their internals had me always wondering on how they did it until you just explained it. Pretty nifty and simple, I might add. Had I