The fadeOut() method gradually changes the opacity, for selected elements, from visible to hidden (fading effect).

learn more… | top users | synonyms

0
votes
1answer
40 views

jquery fadeOut behavng badly

While there have been many threads dealing with FadeIn/FadeOut, I believe I have a problem using these functions that is somewhat unique. I find it hard to believe that it may be bandwidth, but if it ...
2
votes
2answers
100 views

How to fade a div using JQuery

I am new to jQuery. I developed a webpage that have 1 heading, 2 DIVS and 2 hyperlinks. What am I doing is that when the user clicks on the 1st link, the texts of the divs are exchanged e.g the text ...
-1
votes
2answers
56 views

jQuery - delay each div in DOM [duplicate]

I'm trying to loop over each DIV in DOM and apply an effect (let's say fadeOut()), with time spaces between each one. From some reason this thing doesn't want to work. var stupid = -1000; ...
1
vote
1answer
278 views

jQuery overlay plugin

I am building a small overlay plugin to use for upcoming projects, the following code works with a bit of imperfection: $(document).ready(function() { var clickable_link = ...
0
votes
1answer
60 views

jquery - fadeOut callback does not always execute

A part of my code: anObject.fadeOut(fadeOutTime, function(){ anObject.css('display', 'none'); console.log("inside the callback"); veryImportantMethod(); ...
0
votes
1answer
68 views

fadeOut div#wrapper_footer_fixed when div#footerstart On Screen

I'm trying to set up a sticky footer on my page with a condition to show it or hide it. The HTML is as follows: <div id="wrapper_footer_fixed"> <?php echo ...
0
votes
0answers
234 views

CSS causing IE10 to act erratic and/or crash

While debugging my CSS in an attempt to find out why the login page I am trying to construct was acting particularly strange in IE10 I found the code that is causing the issue, but am not sure why it ...
0
votes
2answers
171 views

asp.net jquery fadeout, change text and fadein smoothly

I am using jquery.raty framework to do rating system. I have 5 stars side by side, and next to the stars, I have a label saying "Please rate me". When user click one of the stars to rate, I want label ...
0
votes
2answers
115 views

FadeOut a body iframe/object with jquery

I want to fadeOut an iframe content when I click in a link but I can“t find the way to do it!. This is my code that is not working: <object type="text/html" data="page.html" id="framecontent" ...
0
votes
2answers
92 views

Fade in/out not working in IE

I just uploaded a new site and noticed after a while (my fault) that the fade in/fade out effect on the navigation menu does not work on IE. It's driving me crazy because it works perfectly in all ...
0
votes
4answers
115 views

hide one div when another is showing in jQuery?

can someone please help i am trying to hide a div when another one is visible. i have div 1 and div 2. if div 2 is showing then div 1 should hide and if div 2 is not showing then div 1 should be ...
2
votes
4answers
508 views

Fade text when page scrolls

I have this basic example working: http://www.mharrisweb.co.uk/tester.htm Is there anyway I can get the fading text to scroll slightly, to create a more fluid tranisiton? Like this site: ...
1
vote
5answers
226 views

jQuery fadeOut() not working in PHP echo

I have been trying, searching, trying, researching all night to see how I can get a page to fade out after a successful PHP login and then after having faded out sucessfully redirect to a protected ...
0
votes
2answers
66 views

Fading content with fadeOut() and fadeIn()

I started to learn jQuery lately. I'm trying to write a script that will fadeIn and fadeOut content for my website since I couldn't find it anywhere online. There is my script: ...
0
votes
0answers
23 views

I want to create a script that hides an object then displays again but 600px higher

I have this so far I'm new to jquery so please bare with me.. I have a selection of logos that I want display 600px high the actual content is more like 3000px high overlay is set to hidden. I want ...
0
votes
2answers
92 views

asp.net jquery radiobuttonlist in updatepanel fadeout

I updated my post in order to show you the html. thanks by the way I would like to click the submit button which will make the Radiobuttonlist fade out. I tried many things but couldn't do it. ...
0
votes
1answer
92 views

delay between fadein/fadeout jquery

I have made a simple loop that makes div#1 fade in/out and then div#2 fade in/out The code i have written is like this: function runToggle(iDuration, domFirst,domSecond) { ...
0
votes
1answer
78 views

css3 fade-in-out

There are lots of css3 fade in/fade out animation out there. Is there something that would do fade-in-out with no trigger (e.g. no hover or click) that runs itself with animation-duration? Thanks, B
1
vote
2answers
692 views

jquery or javascript image onclick div fadein/ link onlcick div fadeout

I'm trying to make an image onclick function with a fadein hidden div the problem is I don't really know jquery or javascript all that well. I have searched to try to do it in css but i heard it's ...
0
votes
1answer
65 views

Fade In at Div and Fade Out away from Div

I've got a scroll path event occurring when I reach this point in the site's destination. As you can see from the following code, when a user travels to this specific point, "my work," the div ...
0
votes
2answers
114 views

How to make ProgressIndicator to fade out?

In my WP8 application I use a ProgressIndicator and I'd like it to fade out before making it invisible. I can't find any documentation describing how I can do that, the only exposed property of ...
0
votes
1answer
173 views

Make a text entry fade out after input validation, then fade back in with original placeholder text

I'm setting up a splash page with a single email entry form. Right now when a user enters an email the form fades out quickly and a thank you message fades in to replace it. What I want to do is ...
2
votes
1answer
287 views

jQuery to FadeOut Background image declared by HTML inline style

I've been trying to use Jquery to fadeOut only the background image in a div that's declared via inline style and not CSS. For example: <div class="big-video-wrap-image" ...
0
votes
1answer
67 views

Fade out swfObject with jQuery (or any method)

I am using swfobect to embed a youtube video into a page. I have got event listeners that make the video hide using jQuery hide(); to get rid of the video once is it finished. Replacing hide(); with ...
1
vote
2answers
165 views

Jquery text change on hover with transition

For this HTML snippet : <header> <h1>Title</h1> <h2>my first sentence</h2> </header> I run this Jquery script : $('header h2').hover(function(){ ...
1
vote
2answers
260 views

jquery hover fadein fadeout simultaneously

I have circle menu, which has to fadein and fadeout. Working example is here: http://93.103.24.208:8080/sagita/ (only "reference" and "storitve") first problem is that each fading waits till the ...
-4
votes
3answers
120 views

Using jQuery how do I fade in one statement over another indefinitely? [closed]

I want to fade 3 or more statements out and in, indefinitely. Here is the code: <div class= "background"> <h6> <div id="one">This is the first statement</div> ...
1
vote
2answers
78 views

Assign “fadeOut” click function to multiple DIVS

EDIT: A few people answered my question very quickly. It was a painfully obvious mistake that I made that was solved simply by changing #buttonclose to .buttonclose. Thanks for everyone for their ...
0
votes
1answer
339 views

How do I do a jQuery scroll-to-stick menu smoothly?

I have finally been able to get the header/navigation area to be a scroll-to-stick menu. The only problem I have now is when I scroll down the transition to making the header/navigation area stick is ...
0
votes
1answer
59 views

FadeIn and FadeOut repeats when try to fade out

This is probably something ease to fix and I have missed some obvious but can't really find what it is. When I click on backgroundcover I want the div songtitle fadeIn over backgroundcover, it works ...
0
votes
2answers
163 views

Simultaneous and random output pins with Arduino

I have a project that requires eight DIFFERENT lights to cycle between on and off at random times with random fade in, random fade out and random on/off durations. My strategy is to fade on, leave on ...
0
votes
2answers
116 views

jQuery - Stop delay fadeOut by another event

This is my current code. It works but when running another event (by clicking a button for example) I need it to stop and reset the fadeOut. Code $('#selector').delay(5000).fadeOut('slow'); I ...
0
votes
0answers
44 views

fade seperate divs

Not sure how to do this but I have tried to make this work but the menu buttons jump up and down when I put in the fadeOut. Im trying to adjust the fadeIn and fadeOut speed of the divs without the ...
0
votes
1answer
58 views

fadeout from one table and fadein to another

I have two <ul>: <ul id="sortable1" class="connectedSortable"> <li class="ui-state-default"> // I show the parameters of the row </li> </ul> <ul ...
5
votes
2answers
2k views

jQuery scroll event

I am trying the following jQuery code. When I scroll either up or down I want to fadeOut a div and when the scroll has stopped fadeIn the same div. What I have is this: $(document).ready(function(){ ...
0
votes
1answer
163 views

Is there a way to fade in and fade out the supersized loader div, #supersized-loader?

I have a very limited knowledge of working with jquery and can usually muddle through, but I have a project where the client would like the 'preloading' image to fade in and fade out before the ...
0
votes
4answers
237 views

Fade out one table and replace with another using jquery?

I've found a few similar topics here searching but I've not been able to adapt them to my exact situation. I have a simple single page website (well, I want it to be a single page) with five ...
0
votes
2answers
750 views

Jquery - highlight div / grey out rest of the page

I'm trying to highlight div / grey out rest of the page. The code I have is: jQuery(document).ready(function ($) { $('.entry-content').mouseover(function(e) { $('.expose').mouseover(function(e){ ...
0
votes
2answers
216 views

jQuery random fade in and out with hover

I got some help with jQuery for a fade in and out, but it's not quite working the way I need it to. This is the script: $(document).ready(function(){ $("#trivlimp").hover(function(){ ...
1
vote
3answers
215 views

How to move and fade out any View with Animation

Ok, so I have a View where its being animated with the following code: RelativeLayout rl = (RelativeLayout) findViewById(R.id.productPage_parentLayout_RL); ImageView iv = new ImageView( ...
2
votes
4answers
300 views

jquery fade in at same time as fade out

I'm stuck and I really don't udnerstand jQuery right now! I want my 3 blocks to fade in a fade out with 3 second delay, in a loop. This works but I want block 1 to fade out WHILST block 2 is fading ...
0
votes
2answers
160 views

How to detect if element was faded out

I want to have two buttons, one to fade div1 out, and one either to fade div1 in, or to fade out the button itself, if the div1 is already hidden. here's the code, pretty unnecessary though, cause my ...
0
votes
1answer
86 views

how to add fadein and fadeout effect for first and last elements of jcarousel

I am using jcarousel autoscroller for my client. But I need to fadeOut the last element before the scroll occurs. Also fadeIn effect for the first element. How can I do that ? Somebody please help ...
2
votes
1answer
107 views

Adding a Skip Button to FastForward a .fadeIn / .fadeOut?

Just to clarify, when you load my site I have a bit of text that fades in (quote), and then fades out. Afterwards a new bit of text (my brand name) fades in. Since I want people to have enough time ...
3
votes
3answers
411 views

jQuery fadeIn/fadeOut between (a & a:hover) in a navigation menu?

i'm trying to do a fadeIn/fadeOut transition between (a and a:hover) on a navigation menu the nav menu is structured like this: <div class="menubar"> <ul id="mainmenu"> ...
0
votes
3answers
230 views

jquery fadeout/fadein flicker issue

i have read several posts on this but none seems to solve my issue, when I fadeout a gallery, the other fades in, that works fine...but the item that fades in seems to 'refresh' or fade in again (real ...
2
votes
2answers
95 views

Having trouble with fadeIn and fadeOut using jQuery

I have made a JSFiddle (http://jsfiddle.net/wpC57/2) that showcases my problem. I want the #grid-viewer to have display: none; as the page loads. Then when you hover over any of the links I want it ...
2
votes
2answers
157 views

Hide and Show - slideToggle with fadeIn

I have a menu with three links, linkOne, LinkTwo, linkThree. linkOne: I put a slideToggle on. and it works like i want, when i press its open it and when i press again it closes, this is what I'm ...
4
votes
1answer
184 views

jQuery Fading Text is Jumpy in IE8 and

I'm having a problem fading in and out text with jQuery in IE8. I'm using FlexSlider (WooThemes). Plus... I also would like to stop the fade on the background image (after slide 1) if possible. ...
0
votes
1answer
631 views

Fade to different div background image on hover

For this new website I'm creating, I'm trying to get one background to fade into another when I hover on a link. I don't want the link to change, just the background. I found some good jQuery to get ...

1 2 3 4 5 14