Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript MenuFader revealing multiple divs

  • This topic is empty.
Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #23977

    Hi,
    I am new to javascript and would like to get the menufader to reveal multiple divs

    Code:

    Now it only make visible a div and not the childsclass of these last one.

    If somebody has a clu that would lead me somewhere, ike a tutorial on multiple function for javascript, that would be awesome.

    Cheers

    #53187

    oh maybe it’s easier. It affects all inside divs to display none.
    If it can only affect the top div and not the childs that would solve it.

    #53188

    well i guess i solved it. maybe a bit dirt but it works

    if added:

    Code:
    $(this).parent().find(“MYDIV”).fadeIn();

    after this one

    Code:
    $(“#content”).find(“div:visible”).fadeOut(“fast”, function(){
    //once the fade out is completed, we start to fade in the right div
    $(this).parent().find(“#”+idToLoad[0]).fadeIn();

    If somebody as a better trick let me know :)

    #53419

    well all was going fine until I tested freaking IE. even 7 breaks on me.

    Trying to figure things out again:P

    here’s my latest code. If somebody knows the trick let me know :)

    Code:
    #54184
    ikthius
    Member

    sorry no one has been here to help dude, but hopefully someone with jQuery knowledge can help

Viewing 5 posts - 1 through 5 (of 5 total)
  • The forum ‘JavaScript’ is closed to new topics and replies.