[jQuery] Re: How we used jQuery for our company site

2008-05-14 Thread nathandh
> Thanks for spreading the good word about jQuery. Great site, too, by > the way. Much obliged! Thanks for the kind word and IE tip... I'll include that with a credit in a revision I do tomorrow. Nathan H. Chapel Hill, NC

[jQuery] How we used jQuery for our company site

2008-05-13 Thread nathandh
Did a little write-up about our company portfolio page, on account of several requests: http://onwired.com/blog/using-jquery-to-produce-rich-user-interfaces-onwired-portfolio-example/ Hope it's helpful to someone! Cheers, Nathan H.

[jQuery] Re: jquery and safari

2008-01-01 Thread nathandh
> My code is quite long so instead of burdening you under it, i would > rather ask an open question about any known issues with Safari and > jquery? Don't know of any known issues, other than the many I've encountered personally. Which version are you running on Mac? The 3.0 beta on Tiger gave

[jQuery] BBC Redesign

2008-01-01 Thread nathandh
Looks like the long-overdue BBC redesign is using jQuery (and a metric ton of whitespace and internal CSS): http://www.bbc.co.uk/home/beta/

[jQuery] Re: Help Test jQuery 1.2.2 (beta 2)

2007-12-20 Thread nathandh
> We've landed about 20 more bug fixes since the previous 1.2.2 beta and > we'd like to do a quick sanity check before we go live. John, is there any formal procedures for beta testers? I'd be happy to lend a hand, but I'm not really sure what you're looking for... Thanks, Nathan

[jQuery] Re: Make IE 6 Work Like IE 7

2007-12-01 Thread nathandh
On Nov 27, 5:19 pm, cfdvlpr <[EMAIL PROTECTED]> wrote: > Does there exist a jQuery plugin to do everything that Dean Edwards > IE7 JS library can do? Not as a whole, but what are the specific limitations you're trying to overcome?

[jQuery] Re: Form question

2007-11-25 Thread nathandh
If anybody's interested, here's what I came up with: $('#billing input').each(function(i) { $(this).val( $('#shipping input').eq(i).val() ); }); Works like a charm.

[jQuery] Re: Form question

2007-11-25 Thread nathandh
Actually, here's the whole thing for context: $('input#same').toggle(function() { $(this).attr("checked", "checked"); $('#billing input').attr("disabled", "disabled"); $('#billing input').each(function(i) { $(this).val( $('

[jQuery] Re: == onload function with the fadeIn effect. How? ==

2007-11-25 Thread nathandh
> == Desired result: > I want a html file to be loaded into a div element. When the file is > injected, I want it to fade in. Also, if you want to bind events/handlers to any elements in the html file you've just loaded, check out the livequery plugin: http://brandonaaron.net/docs/livequery/";>

[jQuery] Form question

2007-11-25 Thread nathandh
Hello, I'm working on a user profile page that has fields for shipping address and billing address, with a checkbox that says, "Same as shipping?" You know the kind... where instead of filling out the billing address, it autopopulates from the shipping fields you just filled out. What would be

[jQuery] Re: LiveQuery (Discuss Please)

2007-11-25 Thread nathandh
> Obviously, that was only a simple example. The more general case, wanting to > bind some event handler to a selector regardless of when it appears on the > page, is extremely common. So again, I'm trying to understand why the rate > of adoption has been so slow. Any thoughts? I've been using jQ