Re: [jQuery] Re: How do i get this mega dropdown with jQuery??

2010-01-06 Thread audiofreak9
This guy has a mega-drop-down how to with CSS and jQuery

http://www.sohtanaka.com/web-design/mega-drop-downs-w-css-jquery/

 Corey
camwebdesign.com



On Wed, Jan 6, 2010 at 11:54 AM, 123gotoandplay wesweatyous...@gmail.comwrote:

 is this a good solution:
 bldd.nl/prototypes/megamenu/test9.html

 On Jan 6, 5:41 pm, 123gotoandplay wesweatyous...@gmail.com wrote:
  tx, for answering
 
  Any example how to do this??
 
  I am stuck with the hover and the dropdown div
 
  Highly appreciated
 
  On Jan 6, 4:24 pm, Chris chriss...@gmail.com wrote:
 
   I wouldn't really call that a mega dropdown. All it is is 2 divs,
   the second one hidden and sliding into view when you mouseover the
   first. The menu items themselves appear to be completely irrelevant as
   far as the dropdown effect is concerned.
 
   On Jan 6, 8:37 am, 123gotoandplay wesweatyous...@gmail.com wrote:
 
Hi all,
 
I am trying to get this mega dropdown menu:
see textielmuseum.nl/
 
So far i have:
bldd.nl/prototypes/megamenu/test2.html
 
But i can´t get the hoverIntent to work?
here´s my try W.I.P
bldd.nl/prototypes/megamenu/test4.html
 
Any tips, ideas how i to get my mega dropdown to work on hover and
hide it???
 
Regards,



Re: [jQuery] Re: jquery too long to load

2010-01-02 Thread audiofreak9
Looks to me like the www.000webhost.com analytics code is what is slowing
the process, not the loading of jQuery.  I got waiting for
attilio.site50.net and/or www.000webhost.com messages from your site.

As I'm sure you know jQuery waits for the entire page to load before it is
enacted hence the $(document).ready(function().

I would guess that your host is putting that script at the bottom of your
page...otherwise loose it or add it to the $(document).ready(function()
call.

As Šime Vidas stated use css to hide the drop-downs. In fact you can use css
to produce the drop-down menu with a layer of jquery to provide the fade
in/out effects.  Here are a few pure CSS drop-down menu examples:

http://www.sohtanaka.com/web-design/examples/drop-down-menu/
http://www.cssplay.co.uk/menus/final_drop.html
http://www.projectseven.com/tutorials/navigation/auto_hide/workpage.htm

Otherwise I do like the effects you came up with on the navigation.

 Corey
camwebdesign.com



On Sat, Jan 2, 2010 at 12:12 PM, attilio hawkw...@gmail.com wrote:

 that's exactly where i'm loading it from

 even though i can hide it using CSS the animations still take a few
 seconds to load which isn't good in my opinion



Re: [jQuery] Table striping still not working in IE7

2010-01-02 Thread audiofreak9
Just an off the hip thought, IE7 may still have the pseudo issues in IE6 and
earlier...

 Corey
camwebdesign.com



On Sat, Jan 2, 2010 at 5:16 PM, cybervigilante cybervigila...@gmail.comwrote:

 I've tried :odd, :even, and :nth-child. They work fine in IE8 but not
 in IE7 (using compatibility mode to check). Is this common or
 something I have to figure out? I'm just striping a table at
 http://celestialchurchqueens.org
 with:   $('tr:nth-child(even)').addClass('alt');  I temporarily tried
 loading jQuery 1.3.1 instead of 1.3.2 but that didn't fix the
 problem.

 Works fine in FF, Opera and Chrome of course. IE is the problem, as
 usual. I hate to go much farther with jQuery when a simple effect
 won't work in what is still the most common browser (unfortunately)

 Is there an alternate way of doing this that will work in IE7. And of
 course, if IE7 won't support simple striping, is it going to support
 moving things and animation?