1
vote
1answer
63 views
why is this jQuery .animate call so slow?
Hi All I have a pretty straight forward function
enableModule : function(moduleName){
var module = $('div#'+moduleName);
console.log('enabling '+moduleName);
…
0
votes
1answer
67 views
Have scroll catch work, only moves one pixel
I have a block of code that scrolls the page up via a animate jQuery thing, but to increase usability, if the user disturbs the scrolling motion in any way (e.g. scrolling wheel, g …
0
votes
5answers
43 views
multiple fadein animations in jquery
Hi.
I'd like to fade in several boxes aligned horizontally one after the next.
Say each box belongs to class fadeable and has an id.
Addtionally, I'd like to fade the boxes from t …
1
vote
2answers
57 views
jQuery selector samba
This is my first post on stackoverflow, hello everyone!
My first venture into jQuery animation is to have a set of images in two divs, top-half and bottom-half, and make them rota …
1
vote
1answer
35 views
jQuery animation won’t run on one element
I have the following jQuery code which runs when I'm clicking an option in a select box:
$('#name, #account, #kid')
.attr('disabled', 'disabled')
.css('background-color', …
0
votes
2answers
75 views
jQuery plugin to animate colors form one class to another
Hi all,
There are a lot of jQuery color plugins.
However I couldn't find the one to animate between css class declarations.
For example doing a smooth animation from .class1 to . …
0
votes
2answers
126 views
JQuery synchronous animation
In many cases I wish animation to be executed synchronously. Especially when I wish to make a a series of sequential animations.
Is there an easy way to make a jQuery animate func …
1
vote
1answer
380 views
jQuery opacity animation distorting positioning in Internet Explorer
I'm trying to implement a click-like effect on my horizontal tab menu using opacity property and jQuery animate function. Here is the code for doing this:
$(document).ready(functi …
0
votes
2answers
170 views
Creating a slideshow in jQuery (not images)
Hey everyone,
I have a couple of div elements contained in one container div, and I would like to slide through them, showing only one at a time, and after a certain timeout slide …
2
votes
5answers
132 views
Best way to prevent a javascript function from executing while it already is or another one is?
I'm using jquery and what I'm doing is binding the toggle method to a number of buttons on a webpage. It looks something like this
$('.button').toggle(function(){
// first funct …
0
votes
2answers
136 views
Trouble with the jQuery animate function?
I needed a simple three slides slider, so instead of using a jQ plugin I hand coded it myself. The code works but the animation occurs in 2-3 frames instead of happening in over 20 …
3
votes
2answers
63 views
Does jQuery’s Ajax have anything like .NET’s LoadingElementId
.NET's Ajax helper has the LoadingElementId: String property, gets and sets the ID of the DOM element to be displayed for the time it takes to complete the request.
Looking for th …
2
votes
4answers
236 views
How can I make a function wait until an animation completes?
I have used JQuery for a small animation work: a table #photos contains 9 photos and I would like to increase the width and height using the animate function on mouseover. But whil …
0
votes
0answers
114 views
jquery .animate - image gets cropped during animation
Hello all,
I am currently programming a carousel with javascript using the jquery library. Basically, there are three images shown, the central image being bigger than the two ot …
3
votes
2answers
352 views
Animation in Adobe AIR using jQuery.animate
In my AIR application, I want to animate an HTML element using jQuery. When I attempt the animation in the global HTMLLoader, there is no problem. However, I'm having a problem whe …
