Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
4answers
17k views

JQuery delete DOM element after fading out

I want to delete an DOM element right after fading out. What I did so far is $(element).click(function() { $(this).fadeOut(500, function() { $().remove(this); }); }); But now I always get this ...
3
votes
3answers
110 views

jquery replaceWith() and delay() to fadeOut()

I'm trying the following in order to replace existing element with the message and after a short delay fade out the message, but for some reason I cannot get it to work: ...
3
votes
2answers
452 views

Black border Around Transparent PNG in IE8

I'm experiencing some problemes with a black small border around transparent PNG files..in a jquery slider in IE8.. It works fine in all browsers (including IE6 & 7) but not in IE8. you can see ...
2
votes
1answer
33 views

jquery show elements incrementally then show in reverse

I would like to show 10 elements (images) incrementally. When the 9th image is displayed, I want to display them again (rotating), but this time in reverse. So, show image 1, 2, 3, 4, 5, 6, 7, 8, 9, ...
2
votes
1answer
182 views

How do i get my error messages to fade out? in RubyOnRails 3

The error i want to show flash[:error] = "Invalid username/password combination." I've tried $(document).ready( function() {// When the Dom is ready $('.error').hide();//Hide the div ...
2
votes
2answers
1k views

Gray out divs Using JQuery

Im trying to use this code: <script> jQuery('#MySelectorDiv').fadeTo(500,0.2); </script> To fade out a bunch of divs named MySelectorDiv, the only thing is, it only fades out the 1st ...
2
votes
2answers
3k views

How can I get jQuery load() to complete before fadeOut/fadeIn?

I want to do an AJAX call via jQuery load() and only once it returns, then fadeOut the old content and fadeIn the new content. I want to old content to remain showing until the new content is ...
2
votes
6answers
9k views

jQuery hover : fading in a hidden div while fading out the “default” one

I have two divs (one of them hidden with CSS), which I'm fading in and out in alternance inside a common space, on hover. This is the markup : <div id="wrap"> <div class="image"> ...
2
votes
1answer
5k views

Fade In/Out and create/hide <DIV> with javascript

Hi I'm creating some on runtime. For that I'm using this function: function creatediv(id, html, left, top) { if (document.getElementById(id)) { ...
1
vote
0answers
102 views

fade out the screen?

I'm making a splash screen in the application that I'm developing for the android platform. My question is, how can I fade out the splash screen or any screen? Or can I add effects? like the new ...
1
vote
3answers
54 views

how could i get the sound's volume get down slowly?

i can play a sound, like this: channel.noteOn(noteNumber, velocity); and i stop the sound, like this: channel.noteOff(noteNumber); but the soundoff should stop, when the volume is 0, so like: ...
1
vote
2answers
515 views

Fade Out Current Activity's View

i want my activity's view to be faded out when there is a click on a button. I put the animation code inside OnClickListener() of the button but the fade out is not happening. So any idea how can i ...
1
vote
2answers
256 views

C# Fade-in and fade-out transparency when form is being moved

I have the code to make the form partially transparent when is being moved, but I want to know if it's possible to add fade-in and fade-out effects when I start moving and stop moving the form. EDIT ...
1
vote
3answers
143 views

jQuery: fading out 2 elements, when 1 has been clicked

I have a PHP/PostgreSQL/Oracle-script which displays links as "tags", which can be clicked to display only the database records matching that "tag". And then I have an "X" near every "tag", so that ...
1
vote
1answer
447 views

image rollover effect in jquery?

here my code- $('.smenu li').mouseover( function(){ var src = $(this).find('a').attr('href'); $('.hbg').css('background-image', 'url(' + src + ')'); }); html code- <div ...
1
vote
1answer
8k views

Jquery - mouse over -> fade in/out // click -> opacity 100% // other click -> opacity 60

Iam working on a website with jquery and thumbnails. When the page is loaded all the thumbnails have to be on 60% of opacity. As soon as you go with your mouse over a thumb it needs to fade to 100%, ...
0
votes
2answers
96 views

jQuery Fade in/out toogle method

I am having trouble with an "if and else" statement for fading in and out using a toggle link. I can get the div to fade in, however, I can not seem to get it to fade out. I am somewhat new to if and ...
0
votes
2answers
107 views

Add a fadeIn / fadeOut to table results

I have the following code: <script type="text/javascript"> function filter(phrase, _id) { var words = phrase.value.toLowerCase().split(" "); var table = ...
0
votes
1answer
2k views

Android fade out animation for tablerow

I have a TableRow with a TextView. Here is the xml for it. <TableRow android:layout_height="fill_parent" android:layout_gravity="bottom" android:layout_width="fill_parent" ...
0
votes
3answers
159 views

Fading between images

How can i fade rotate between two images using jQuery? Say for example. <img src="image01.jpg" /> <img src="image02.jpg" /> I like the images to fade in/out between for say 2seconds ...
0
votes
2answers
828 views

Create a simple mootools 1.2 tab system

I'm trying to create a very simple tab interface using the mootools 1.2 version. I need to have a fadein-fadeout effect, no sliding or morphing. I've tried to find some demos online but they all refer ...
0
votes
1answer
449 views

jQuery Fading Opacity Problem

For a client, I am attempting to get this site to work in IE and other web browsers (currently only works in Safari and Firefox for Mac): http://www.randomscripts.net/think_company_world/main.php I ...
0
votes
1answer
2k views

Attempting to create a quick jQuery drop down menu

am not sure if I'm doing this right, but I'm trying to create a simple drop down menu in jQuery. I basically want a div (with links) to appear once the menu item is hovered over.. The Menu: <ul ...