[jQuery] Re: Opposite of .contains() ?

2008-01-12 Thread Loren Pipes
My pleasure. jQuery selectors have changed my life (I kid you not), definitely worth a weekend poking around! Pipes

[jQuery] Re: Opposite of .contains() ?

2008-01-11 Thread Loren Pipes
You might try something like this: $("p:not(:contains('1'))") Loren Pipes

[jQuery] Re: Is this possible with jQuery?

2007-10-02 Thread Loren Pipes
Sure, do something like this: $('#Explanation').css({ position : 'absolute', top : '720px', right : '0px', width : '10px', margin : '40px 0 0 0' }); VP

[jQuery] Re: Attr calls on jQuery object with more than one element?

2007-09-27 Thread Loren Pipes
Map is really nice for this. var attributes = $('.selected').map(function() { return $(this).attr('rel'); }); VP

[jQuery] Re: jQuery Merchandise for Sale. Help Support the Project

2007-09-05 Thread Loren Pipes
What you need are some t-shits! VP

[jQuery] Re: Couple of Bugs, css + jquery

2007-08-23 Thread Loren Pipes
I'd say the layout problem is the use of min-height and min-width css attributes, which IE6 does not understand. VP

[jQuery] Re: Removing an element drom children group

2007-07-13 Thread Loren Pipes
What you're most likely running into is TABLEs tend to contain a TBODY element which wraps the TRs. Try $("#table > tbody > tr:gt(0)").hide(); or something of that ilk. VP

[jQuery] Re: IE7 and jQuery Corners.....

2007-07-10 Thread Loren Pipes
This has to do with the background color of the header div/h1 being set to white, when I set them to transparent (via dev bar) the corners look fine. VP

[jQuery] Re: Binding actions after an ajax call?

2007-07-01 Thread Loren Pipes
Kinda new myself, but I believe that the load method can take a callback as the third parameter, like... $('#myDivID div.itemContent').load('/controller/action/', null, function() { $('a', $(#myDivID div.itemContent')).click(function() { do your thing return false; }) }); VP On 6/30/07, Tobias