[jQuery] DOM traversing with 'not'

2007-12-05 Thread Kevin Scholl
Greetings, all. I feel really stupid here, but I'm at wit's end. I want to remove the bottom border from the last LI in all DIVs except those of class 'features'. I've tried all manner of syntax, to no avail. Here's what I currently have in place: $(div:not(.features)

[jQuery] Re: DOM traversing with 'not'

2007-12-05 Thread Kevin Scholl
PROTECTED] wrote: Kevin, Do you have a test page up? That looks like it should work, but I need to see the structure in action. On 12/5/07, Kevin Scholl [EMAIL PROTECTED] wrote: Greetings, all. I feel really stupid here, but I'm at wit's end. I want to remove the bottom border from

[jQuery] Re: DOM traversing with 'not'

2007-12-05 Thread Kevin Scholl
] wrote: Kevin, That really should be working, you may need to submit a bug report or ask others if this is a true bug. With that said, I did the below and get the last LI in Awards and Screenshots so I am not sure if this is what you want: $('li:has(img):last-child'); On 12/5/07, Kevin

[jQuery] Re: DOM traversing with 'not'

2007-12-05 Thread Kevin Scholl
then, and if the user has Javascript disabled, the differences aren't really that noticeable anyway. Thanks for the time and insights! On Dec 5, 12:54 pm, Karl Swedberg [EMAIL PROTECTED] wrote: Hi Kevin, I have an idea. :-) The problem is that, even though you're excluding div class=features, you're

[jQuery] Re: jQuery CoverFlow

2007-11-30 Thread Kevin Scholl
[mailto:[EMAIL PROTECTED] On Behalf Of Kevin Scholl Sent: Friday, November 30, 2007 9:50 AM To: jQuery (English) Subject: [jQuery] jQuery CoverFlow Greetings, all! Has anyone done a jQuery equivalent of Apple's coverflow navigation? I've seen several Javascript implementations, SE51 (http

[jQuery] jQuery CoverFlow

2007-11-30 Thread Kevin Scholl
Greetings, all! Has anyone done a jQuery equivalent of Apple's coverflow navigation? I've seen several Javascript implementations, SE51 (http:// www.se51.net/devnull/cover-flow/) being the nicest I've come across. But no sign of a jQuery variant that I've seen. This is beyond my skills and

[jQuery] Re: .css(border-color) problem in FireFox

2007-11-16 Thread Kevin Scholl
borderColor is a reserved word, so it shouldn't be used as a variable name. Try using something else, maybe bColor or something like that. Also, you might want to replace css(border-color) with css(borderColor) for consistency. $(#mydiv).each(function() { var bColor = $(this).css(borderColor);

[jQuery] view all event listeners?

2007-10-03 Thread kevin
Anyone know of a way to view all event listeners on a page at a specific moment for debugging?

[jQuery] Re: Clear Input Search Box?

2007-10-01 Thread Kevin Scholl
http://jquery.com/plugins/project/toggleval On Oct 1, 8:38 am, Danjojo [EMAIL PROTECTED] wrote: I am trying to clear an input search box's value. When the page loads the value is set. I.e.: input id=searchBox name=searchBox type=text class=input style=width: 100px; value=Search term or

[jQuery] AJAX GetElementByID problem

2007-08-29 Thread Kevin
; } }); /script /div Now the page to be loaded: div id=blah1/div script language=JavaScript alert(hi); document.getElementById(blah1).innerHTML = stronghi/strong; /script This throws the error: TypeError: document.getElementById(blah1) has no properties Any ideas? Thanks! -Kevin

[jQuery] Re: Blueprint and jQuery

2007-08-25 Thread Kevin F
absolutely make it available! just another bonus for the jquery community :) thx. On 8/24/07, george.gsgd [EMAIL PROTECTED] wrote: Building on the work done by matz in auto generating grids (http:// kematzy.com/blueprint-generator/). I've been working on a javascripty dynamicly resizing

[jQuery] Re: jQuery Examples pack

2007-05-03 Thread Kevin Scholl
of jQuery in there; could probably be more, but I've only scratched the surface of what the library can do. So no other plugins or libraries, just my own self-battering belief that I could make it work. LOL Kevin [EMAIL PROTECTED]

[jQuery] Re: ANN: jQuery-Powered Sites: The List Continues to Grow

2007-05-03 Thread Kevin Scholl
), and automatically closing any popup window when leaving the given parent page or opening a new popup window (see the About Us / Location page). Nothing groundbreaking, but there it is. Have another site in client review that uses jQuery for some other things... Kevin

[jQuery] Postpone Link action

2007-04-22 Thread Kevin
(this.href); // pseudo code for what i need to achieve return false; } Any ideas? Thanks, - Kevin

<    1   2