show/hide this revision's text 3 holy indentation, batman!

I just figured it out below:

$(".notice")
   .fadeIn( function() 
   {
      setTimeout( function()function()
      {
         $(".notice")
                        .fadeOut("fast")
                    ;
                (".notice").fadeOut("fast");
      }, 2000
            )2000);
   })
;
);

I will keep the post for other users! Best of luck.

Ryan

show/hide this revision's text 2 improved formatting

I just figured it out below:

$(".notice").fadeIn(function(){setTimeout(function(){$(".notice").fadeOut("fast");},2000);});
(".notice")
    .fadeIn(
        function() {
            setTimeout(
                function(){
                    $(".notice")
                        .fadeOut("fast")
                    ;
                }, 2000
            );
        }
    )
;

I will keep the post for other users! Best of luck.

Ryan

show/hide this revision's text 1

I just figured it out below:

		$(".notice").fadeIn(function(){setTimeout(function(){$(".notice").fadeOut("fast");},2000);});

I will keep the post for other users! Best of luck.

Ryan