[jQuery] select items with a class beginning with a given string?

2007-09-17 Thread jazzle
How do I select items with a class beginning with a given string? e.g.: I have ... tr class=hidden row-odd POID49... tr class=hidden row-even POID49... tr class=hidden row-odd POID50... ... and want to hide all the rows with any POID and then show all the rows with POID49. I know there are

[jQuery] Re: select items with a class beginning with a given string?

2007-09-17 Thread jazzle
Stephan Beal-3 wrote: http://docs.jquery.com/Selectors/attributeContains#attributevalue ... http://docs.jquery.com/Selectors/attributeStartsWith#attributevalue Thanks, I guess the former is more likely to work, given the spaces, but it didn't appear to when I tried earlier. I have since

[jQuery] Re: .css(border-color) returning undefined

2007-07-18 Thread jazzle
aren't borders black unless set otherwise? (i.e. the same behaviour, set by the browser's defaults) george.gsgd wrote: I think backgroundColor works differently as it always has a property, regardless of whether you set it or not. On Jul 16, 6:51 pm, jazzle [EMAIL PROTECTED] wrote

[jQuery] Re: .css(border-color) returning undefined

2007-07-16 Thread jazzle
I am already using that plugin, but that isn't where my problem lies. On Jul 16, 2:32 am, Karl Swedberg [EMAIL PROTECTED] wrote: On 7/16/07, jazzle [EMAIL PROTECTED] wrote: I still need some help with this - can anyone help me? Sorry for the delay, Jazzle. The discussion list slows down

[jQuery] Re: .css(border-color) returning undefined

2007-07-16 Thread jazzle
The latest: 1.1.3.1 And the latest Interface download too. If it is just a bug with the latest jQ, it would make a lot of sense, but obviously be a bit annoying. Difficult for me to test from here (work), so may come back to this thread later this week. Karl Rudd wrote: In that case, what

[jQuery] Re: .css(border-color) returning undefined

2007-07-16 Thread jazzle
Are you sure? The backgroundColor is returned okay... george.gsgd wrote: $('#animationbox').css('borderColor') looks at the style property of the object not the css in the document, so if it's only in your css you get no value. ... -- View this message in context:

[jQuery] Re: How do you delay for a few seconds

2007-07-15 Thread jazzle
See http://www.learningjquery.com/2007/01/effect-delay-trick (it's not a stupid question btw) goofy166 wrote: I have mastered many of the incredible features of jquery today for the first time, but for the life of me I can't figure out how in the heck you can get a div to display for a

[jQuery] Re: How do you delay for a few seconds

2007-07-15 Thread jazzle
this. Would be nice to have a jQuery function, I'll check out that plugin On 7/15/07, jazzle [EMAIL PROTECTED] wrote: See http://www.learningjquery.com/2007/01/effect-delay-trick (it's not a stupid question btw) goofy166 wrote: I have mastered many of the incredible features

[jQuery] Re: .css(border-color) returning undefined

2007-07-15 Thread jazzle
I thought that at first, but that's not the problem. Proven by the fact that I use .css(background-color); successfully. On Jul 15, 3:51 pm, Benjamin Sterling [EMAIL PROTECTED] wrote: Jazzle, I believe you need to do: .css('borderColor'); Let me know if that works for you. On 7/15/07

[jQuery] Re: .css(border-color) returning undefined

2007-07-15 Thread jazzle
: '#cc'}, 250) .animate({opacity: 1.0}, 3000) // wait 3 sec .animate({borderColor: origBorderColor, backgroundColor: origBackgroundColor}); }); On Jul 15, 3:51 pm, Benjamin Sterling [EMAIL PROTECTED] wrote: Jazzle, I believe you need to do: .css('borderColor

[jQuery] Re: Flash-alike menu animation? Can this be done with jQuery?

2007-07-15 Thread jazzle
http://www.frequency-decoder.com/demo/animated-minitabs/ might get you started. On Jul 15, 7:09 pm, bytte [EMAIL PROTECTED] wrote: I have this menu which is just a few menu-items placed next to eachother like this: HOME - CONTACT - NEWS Beneath the menu I have a little image, kind of like

[jQuery] Re: .css(border-color) returning undefined

2007-07-15 Thread jazzle
I still need some help with this - can anyone help me?