[jQuery] minimizing flicker of content for document ready

2009-04-02 Thread tonywhite
I have lots of scenarios on a pretty content-heavy and js-dependent site. I'm using jquery, and I'm trying to think of an effect way to serve unique styles to non-js users. Ideally, I would use javascript to link to a new external sheet. My development environment is not allowing a creation of

[jQuery] noob question - load function - dynamic content to slide in place

2007-07-24 Thread tonywhite
I'm new to jQuery and can't figure this one out. Instead of using an ajax get and innerHTML to load in external html, I can just use jQuery's load function: $(emptyDiv).load(externalHTMLFile); which I like! I would like to do is make better use of the graceful animations that jQuery has. I

[jQuery] Re: noob question - load function - dynamic content to slide in place

2007-07-24 Thread tonywhite
PROTECTED] wrote: Tony, try: (for an ID) $('#emptyDiv').load(externalHTML, function(){ $(this).slideDown('slow'); }); (for a class) $('.emptyDiv').load(externalHTML, function(){ $(this).slideDown('slow'); }); On 7/24/07, tonywhite [EMAIL PROTECTED] wrote: I'm new to jQuery