[jQuery] Re: Please unsubscribe me

2009-06-24 Thread MikeyJ
Are you just asking in general or have you started receiving every message posted to the group lately (for no reason like I have!) ? On Jun 24, 9:23 am, BlueOysterCult st...@michaelsondesign.com wrote: Im not sure how to not get these emails anymore

[jQuery] Selecting the first of two td's in a tr

2009-06-24 Thread MikeyJ
Hi All, I'd like to set the align attribute of only the first TD in a TR for an entire table but am not sure how to address them all in one go. Probably an Nth child thing or similar but not sure! Thx, Mike

[jQuery] Re: Selecting the first of two td's in a tr

2009-06-24 Thread MikeyJ
1) { break; } // after the first two td's stop the iteration through all the td's. }); You can be more specific with what tr you use or you could use a table with a certain class or id: $(table.class tr td).each( hope this helps. On Jun 24, 10:26 am, MikeyJ m.en...@gmail.com

[jQuery] Re: Selecting the first of two td's in a tr

2009-06-24 Thread MikeyJ
. }); You can be more specific with what tr you use or you could use a table with a certain class or id: $(table.class tr td).each( hope this helps. On Jun 24, 10:26 am, MikeyJ m.en...@gmail.com wrote: Hi All, I'd like to set the align attribute of only the first TD in a TR

[jQuery] Re: Selecting the first of two td's in a tr

2009-06-24 Thread MikeyJ
to test the code before hand. On Jun 24, 10:50 am, MikeyJ m.en...@gmail.com wrote: Thx Matthew! Great explanation. I probably should have worded one thing a bit differently...I'd like to set this attribute for the first TD in each TR for EVERY TR in an entire table. I'm sure

[jQuery] Re: Selecting the first of two td's in a tr

2009-06-24 Thread MikeyJ
This worked great. Thx to both of you guys!!! On Jun 24, 11:25 am, Charlie charlie...@gmail.com wrote: this works and is far shorter and sweeter: $(tr ).each(function() {        $(td:first,this).css(color,red);      }); MikeyJ wrote:Looks like your first two offerings throw this error

[jQuery] Re: Selecting the first of two td's in a tr

2009-06-24 Thread MikeyJ
,value); }); On Jun 24, 11:14 am, MikeyJ m.en...@gmail.com wrote: Looks like your first two offerings throw this error in Firebug: unlabeled break must be inside loop or switch Your last example works but it only works on the first TR and it affects both TD's in that TR. ?? On Jun

[jQuery] Nutty dilemma with a time picker and calendar dates

2009-06-18 Thread MikeyJ
Hi All, Ok, nutty dilemma with a time picker and calendar dates. First, some back story! I've got a week view of a calendar (Sun -Sat) showing events and times that opens into a lightbox-type window. This calendar is just a table created by a loop that runs for each day of the week. It is

[jQuery] Anyone else start receiving every post here via email yesterday?

2009-06-16 Thread MikeyJ
It's weird. My groups settings are still set to No Email but they keep coming! Mike

[jQuery] Re: Mouseover /Mouseout div issue

2008-09-01 Thread MikeyJ
  } }); You can also use the .hover helper method which uses mouseenter and mouseleave behind the scenes. $(...).hover(fn1, fn2); -- Brandon Aaron On Sun, Aug 31, 2008 at 8:26 PM, MikeyJ [EMAIL PROTECTED] wrote: Hi All, I'm working on something similar in functionality

[jQuery] Mouseover /Mouseout div issue

2008-08-31 Thread MikeyJ
Hi All, I'm working on something similar in functionality to the lexus website. I've got a nav element that shows a large div on mouseover and hides it on mouseout. This div can hold other elements like thumbnails and form fields. When I move the mouse into the div all is well until I move over

[jQuery] ColdFusion/jQuery Ajax Form Variables Question

2007-11-15 Thread MikeyJ
Hi All, I'm a relative newb when it comes to the Ajax concept so be gentle. :-) Let me tell you what I've got... Main page with a dynamic select box that lists vendors. When I make a selection I'm using $(#vform).load(editvendor.cfm,{vid: $(this).val()}); to load a form into a div on the main

[jQuery] Form Plugin - How to repopulate fields with updated data?

2007-08-23 Thread MikeyJ
Hi All, I'm using the Form plugin to submit data to a processing page and upon success, show a notification to the user. My form has 6 fields, one text and 5 textarea. When the form is initially filled out and submitted the user sees a div get updated for confirmation. Now if the user changes