Skip to main content
The 2024 Developer Survey results are live! See the results

All Questions

Tagged with
0 votes
1 answer
440 views

How to make fadeOut current page and slideDown next page transition effect with JQuery load

Q: How can i make a fadeOut current page and slideDown with next page when i click a button. I want to make the page transition fadeOut homepage, load() the new page and then slideDown() the next page ...
Erik Wahlström's user avatar
0 votes
1 answer
271 views

How to add a hover timeout to drop down element (and sub elements)?

Here's my fiddle of what I have so far: http://jsfiddle.net/Pr3fix/LTSSx/4/ $(function(){ var timer; $('.logo').hover(function(){ $('.bubble-container').stop(true, true).fadeIn({ duration: 600, ...
tdc's user avatar
  • 5,384
0 votes
1 answer
2k views

jQuery: .slidedown() then fadeIn() not working

I have a section of my form where a user can add additional fields. When "Add Fields" is clicked a space should be made below option1, then after a delay, the newly added field fades in. My field does ...
thedeepfield's user avatar
  • 6,198
1 vote
3 answers
3k views

Is this the right way to do fade in while sliding down in JQuery?

CODE: $(document).ready(function() { $('.some_class').slideDown(1000).fadeIn(5000); }); Using the one above, I want to slideDown a div while having it fadeIn. The one above doesn't seem to ...
starbucks's user avatar
  • 2,976
1 vote
3 answers
195 views

Is it possible to add a fade to the .slideUp & .slideDown jQuery Function

Is it possible to have a slight fade to the .slideUp & .slideDown so it slides upwards with a fade? options.trickerPanel.slideUp(function() { $(this).html(value).slideDown(); Here is the ...
user2158255's user avatar
0 votes
2 answers
4k views

Responsive slide up/down div onclick

I have a link that when clicked needs to slide up or slide down (depending on the state) a DIV that contains a responsive full width video. As its responsive and its a widescreen video the height ...
egr103's user avatar
  • 3,948
1 vote
5 answers
106 views

How to work with the jQuery selectors

I have a HTML structure like this:- <article id="a_post" class="a_post"> <div id="thumbnail"> <img id="shine" src="wp-content/themes/dabanggknight/images/play.png"/> </div> &...
Akash Kumar's user avatar
0 votes
2 answers
808 views

jQuery slideUp/Down and fadeOut/In stops halfway

Here's the fiddle: http://jsfiddle.net/4mmk2/ Rapidly clicking the button will cause the animation to pause halfway. I suspect it's the stop() function's problem but I can't find a way to fix it. By ...
chenglou's user avatar
  • 3,640
6 votes
4 answers
7k views

jQuery: FadeIn/To and SlideDown new element

Here is the one line of code I use to push a new row to my container: this.$el.append(new ItemView(item).render().el); Where item is a Backbone.js model, render() creates and/or modifies the object ...
Nahydrin's user avatar
  • 13.4k
0 votes
1 answer
925 views

jQuery fadeOut works but not fadeIn

this is my code on jsFiddle, when I try doing $('#featuredStores').fadeOut(1000) it works, but .fadeIn() doesn't work, Similarly when I use .slideUp() it works, but doesn't work when I use ....
painotpi's user avatar
  • 6,936
2 votes
3 answers
234 views

showing hidden div with jquery

I want to display a div content with jquery if a button is pressed. For example, <button id="b1">Show text</button> if the button is pressed then show this text div. <div id="text"&...
user966582's user avatar
  • 3,303
2 votes
1 answer
4k views

fadeOut div after onClick event problem

this is my first time posting on here and have read alot of helpful stuff over the past few weeks since I found the site! So, my question is: I have the following code on my site and what im trying ...
Phil's user avatar
  • 105
0 votes
1 answer
228 views

Trying to get simple jquery animations on a site I created in Dreamweaver

Hey guys, another question. I'm trying to do some basic jQuery stuff for my final project. I'll be using it to modify my already existing site created in Dreamweaver a few months ago. However, no ...
JoeOzz's user avatar
  • 131