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

2009-06-03 Thread BigAB
have you tried var myText = $('#knowndiv').parents('tr').find('td:first').text(); alert(myText); The TR is really the parent of the TDs, not the table. On Jun 3, 7:33 am, jake dimano wrote: > Mauricio, your code basically works fine on a simple test page.  But > there is something about my set-

[jQuery] Re: open content in new window?

2009-05-25 Thread BigAB
neat and easy.'); myWindow.focus(); }); }); }); [/code] Setting the context of the Selector to the new windows document is really easy and makes editing the new window with jQuery a breeze. Anyway I hope the example is helpful. - BigAB On May 25, 1:18 pm, GravyFace wrote: > On Mon, May 25, 2009 at 3:07 PM, Caires Vinicius wrote: > > The contente of new window opened is dynamically generated? Or is html u > > already have it? > > dynamically-generated.

[jQuery] Re: open content in new window?

2009-05-25 Thread BigAB
ged, isn\'t that neat!'); }); }); }); [/code] Setting the context of the Selector to the new windows document is really easy and makes editing the new window with jQuery a breeze. Anyway I hope the example is helpful. - BigAB On May 25, 1:18 pm, GravyFace wrote: > On Mon, May 25, 2009 at 3:07 PM, Caires Vinicius wrote: > > The contente of new window opened is dynamically generated? Or is html u > > already have it? > > dynamically-generated.

[jQuery] Re: Sortable: zIndex conectWith IE7 - Sortable stays behind seond sortable li's in IE7(possibly others)

2009-03-02 Thread BigAB
Indeed. Sorry. Tabs. Really.

[jQuery] Sortable: zIndex conectWith IE7 - Sortable stays behind seond sortable li's in IE7(possibly others)

2009-02-25 Thread BigAB
Hi there. I did a search for zIndex IE7 but didn't seem to find this issue in particular. Example: http://jsbin.com/ilira When a "li" is dragged from "ul.options" to "ul.rank" the "li" goes behind the rank "li"s in IE7 (and possibly other IE's I never checked). Why? How can I fix this?