Re: [jQuery] Animate or ToggleClass

2010-01-02 Thread waseem sabjee
lets say I have this HTML & CSS markup . extendcontent { display:none; } +Click to extend // all your extend content goes here This is div #1 of extended content This is div #2 of extended content This is div #3 of extended content now heres the script var $s = jQuery.noConflict(); $s

[jQuery] Animate or ToggleClass

2010-01-02 Thread Once
Hi. I'm new to jQuery and ran into this dilemma. In the portfolio section of my homepage ( http://invitro.vegasoftweb.com/es/ ). I have a div with 9 items but only 3 are showing, the other 6 are hidden by another div that has a fixed height and thus clip them. I am trying to implement a soft transi

[jQuery] animate() not working for opacity in IE

2009-12-30 Thread Brian
I'm trying to animate a div from 100% opacity to 40% opacity WITHOUT using fadeTo(). I need to use animate(). It works fine in chrome/FF/safari, but in IE, the opacity doesn't animate, it simply changes to that after the animation is done. Happens in IE 7 and 8. I'm doing this:

[jQuery] Animate/FadeIn on Hover Problem

2009-11-27 Thread Falz
Hi, I currently have this menu http://valkesh.000space.com and what I would like to do is get the image on the item to Fade In and Fade Out. Im not sure if im using the correct concept of javascript, but the thing is I would like the 'hovering' images to be split into 2, so that the 'center' can

[jQuery] jQuery Animate

2009-10-21 Thread Alaa
Hi All, Just wanted to share this link: http://blog.freelancer-id.com/index.php/2009/10/12/jquery-animate-advanced thanks.

[jQuery] Animate forces display:block?

2009-10-21 Thread Jared N
Hi all, I'm trying to animate the width of a box, but I'm noticing that during the animation jQuery is setting the element's display property to 'block' (which is not what I want, I want 'inline'). At the completion of the animation it resets it to the desired setting. I've tried over- riding thi

[jQuery] animate queue :)

2009-10-12 Thread rory pickering
how can i create a queue what i want to do is onblur of a field 1) fade out current message in a div, 2)change the message 3) fade in new message (same div) when i try to do it it changes the html in the div then fades out and then in.. this is the code ive writeen $("#txt_user_name").b

[jQuery] Playing with jquery animate

2009-09-28 Thread Armand Datema
Hi Been playing a bit with jquey animate, here is a sample of an animated header im working on for portfolio section of my upcoming site. http://www.todnn.com/pixelani/portfolio.htm -- Armand Datema CTO SchwingSoft

[jQuery] animate on page load

2009-09-24 Thread craigeves
Hi all Please can you help? I want to animate the width of the 'progress_bar' div when the page loads. I'm using the code below, which works fine in Firefox... but it doesn't want to work in IE6. Where am I going wrong? Many thanks in advance $(document).ready(function(){ $("#

[jQuery] animate : animable properties

2009-09-04 Thread Nico
Hi, I'm coding a jQuery plugin to draw modal windows. In this plugin, I make animations to show and hide the modal window. I'd like my plugin to be as much customizable as possible. So I want the animations to be customizable also. To do this, I have one option for the general css properties (the

[jQuery] Animate just works once?

2009-08-20 Thread webmas...@terradon.nl
Hi all I am testing a msn-look-a-like message box. So, when a message to a user is needed, the message-box shows up and disapears like a msn-message. The first time it works very well! But.starting it for a next time, there is no animation, the messagebox comes up right away, while after a fe

[jQuery] Animate menu effect on mouseout

2009-08-15 Thread Wolf
I am new to this. I want to animate the menu 'height' on mouseout (it works fine on mouseover) - basically a slide up/slide-down effect. How would I go upon that?

[jQuery] animate / carousel

2009-08-14 Thread stefan
HTML: 1 2 3 4 5 6 7 8 JQUERY: var div = $('#test'); var ul = $("ul", div); var li = $("li", ul); var li_width = 100; $('#btn').click(function(){ return move(8); }); function move(to) { ul.animate({left: -(to*li_width}, 100, null, function () { li.slice (to).slice(0,4) }); } QUESTION

[jQuery] animate image position

2009-08-10 Thread Tom Cool
Hi, I'm experiencing a large amount of flickering in a image i move with animate(). Looking at jQuery's source code, i think it has something to do with the setInterval it uses to calculate the animation; when binding the animation to 'mousemove' its runs smoothly. Any ideas on how to improve th

[jQuery] Re: Jquery Animate Issue

2009-08-07 Thread Charlie
the problem with your setup is you keep adding click handlers on top of click handlers every time a click is made 10 round trips in and out and you add 20 new click handlers to the same elements Mr Withers wrote: Hi Guys Iam having an issue with the JQuery animate function. Iam not sure

[jQuery] Re: jQuery animate marginTop jerky in IE

2009-08-07 Thread touch_the_sky
bump!;) -- View this message in context: http://www.nabble.com/jQuery-animate-marginTop-jerky-in-IE-tp24863683s27240p24868155.html Sent from the jQuery General Discussion mailing list archive at Nabble.com.

[jQuery] Re: jQuery animate marginTop jerky in IE

2009-08-07 Thread touch_the_sky
afari or Opera though. -- View this message in context: http://www.nabble.com/jQuery-animate-marginTop-jerky-in-IE-tp24863683s27240p24865529.html Sent from the jQuery General Discussion mailing list archive at Nabble.com.

[jQuery] Re: jQuery animate marginTop jerky in IE

2009-08-07 Thread Liam Potter
Have you tried animating just the top position instead? touch_the_sky wrote: Hi everyone! I have an issue with IE which has been driving me absolutely mad for like last 2 days. Basically all works awesome, crossbrowser, etc. apart from one floated div, when I am trying to animate it's margin-t

[jQuery] jQuery animate marginTop jerky in IE

2009-08-07 Thread touch_the_sky
is).stop().animate({marginTop: '-372px'}, {duration: 300, easing: 'easeOutBounce'}); }); Any help is well appreciated as my frustration levels are unbelievable right now;) Cheers TouchTheSky -- View this message in context: http://www.nabble.com/jQuery-animate-marginTo

[jQuery] Jquery Animate Issue

2009-08-07 Thread Mr Withers
Hi Guys Iam having an issue with the JQuery animate function. Iam not sure if its because iam potentially mis-using the animate function or if its a genuine issue so I thought I would seek some adivce here before looking into it any further :-). I have posted up an example of the bug on Jsbin

[jQuery] Jquery animate marginTop in IE (jerky)

2009-08-07 Thread touch_the_sky
Hi everyone! I have an issue with IE which has been driving me absolutely mad for like last 2 days. Basically all works awesome, crossbrowser, etc. apart from one floated div, when I am trying to animate it's margin- top on hover (move it down, when mouse go out - move it back up). All browsers p

[jQuery] animate{width} method not working.

2009-08-03 Thread shearn89
Hey guys - wondering if you can help me. I've been working on a friend's simple website using jQuery to animate the buttons. I've got them to "bump" when I move the mouse onto them, but when I click to move them (and hopefully resize them) they not only don't resize, but also when the mouse leaves

[jQuery] animate & fade stop() problem

2009-07-22 Thread Denis Abramov
Hello over there! The problem is: when I start hovering in and out very fast, the new div block appears before previous one dissapears. How to get rid of that effect? I heard that there is stop() event, how to implement it in the current situation? I tried to put it before animate, but that doe

[jQuery] Animate-problem with IE

2009-07-05 Thread nappy`
On http://worldfashion.se you'll se what i'm trying to achieve on the three divs if you put your mouse over "brand/blog/event". In Firefox it works perfectly, but in IE i'm getting an annoying space at the bottom. I'm changing the css of the divs using .animate with queue set to false. how do i

[jQuery] galleriffic conflict with jquery .animate

2009-07-03 Thread Mick Brady
Hi there, This is a bit all new to me - this is the first project i have worked with jQuery. Here is a link to the issue: www.origin.ie/testarea/index.html The issue I have is my site contains a .animate all images on a page [they fade in]. I have an animated slide panel to the top of the page

[jQuery] animate callback scope for infinite loop?

2009-06-07 Thread Bill
Hi, I'm trying to create an endless animation similar to a screen saver, where an image floats around the screen, fading in and out. I would like to stay out of the global namespace, so I'd like to use the callback to animate() rather than getTimeout(), which seems to operate only on functions i

[jQuery] Re: jquery animate and click together...

2009-06-03 Thread Gustavo Salomé
Try this: $ (function () { var active=null; $('.workmenuitem').bind('mouseenter',function() { if(active==null) { active=$(this); active.find("img").stop().animate({"opacity" : 1, "left" : "15px"});

[jQuery] jquery animate and click together...

2009-06-03 Thread Adriana
(I hope I'm not posting this twice... the last one didn't seem to go out) I've been looking for an "Ajax CMS" but decided to learn jQuery to learn how to code it myself in order to earn some geek-girl cred among my male colleagues. I've learn a lot about jQuery in a week but as you can imagine

[jQuery] jquery animate and click together...

2009-06-03 Thread Adriana
I've been looking for an "Ajax CMS" but decided to learn jQuery to learn how to code it myself in order to keep earning some Geek-girl cred among my male colleagues. I've learn a lot about jQuery in a week but as you can imagine I still have a lot to learn. I have successfully animated an image

[jQuery] animate scrollTop

2009-05-30 Thread GaVrA
Hi! I am using this code: $('a.goToTop').click(function() { $('html').animate({scrollTop : 0},'slow'); }); And it works like it should. Problem is that sometimes it just bugs out for short period of time, like when you click anchor and it

[jQuery] animate padding start value - Firefox (getComputedStyle)

2009-05-20 Thread Jason Persampieri
(Firefox 3.0.10, OS X) I am setting a padding value via a stylesheet and trying to animate it - - CSS myElement { padding: 20px } - Javascript myElement.animate( {padding: 12px} ) When calculating the start padding value, jQuery calls 'getComputedStyle'. Unfortunately, computedStyle.padding

[jQuery] animate height 100% not working

2009-05-05 Thread thomas.c.math...@gmail.com
I am playing around with the height 100% with jquery for a CSS property. It doesn't seem to work at all though when using it for width it works just fine. Any ideas whats going on, or did I miss something very basic? I can set the height to 100% after the animation but it doesn't look very nice.

[jQuery] Animate Variable Concatenate Help

2009-04-30 Thread paper_robots
I'm trying to get the width of an element, animate it bigger, then shrink it back to normal size on hover. Here's my function: $('a.slider').hover(function(){ var mywidth = $(this).width(); $(this).animate({width: "240px"}); }, function(){

[jQuery] animate color over time using Timers plugin

2009-04-24 Thread kgosser
Hey all, I'm using the Timers plugin to do a count down timer. I like it a lot. I would like to enhance my UI by having the numbering being counted down transition from black to red as it gets closer to 0. The jQuery UI demo for animate seems to be what I need, but what I'm having trouble figur

[jQuery] .animate in ie7 for absolutely positioned element pushes following elements down

2009-04-21 Thread two7s_clash
Hi - I've got a little jquery bit to add some behavior to linked mp3s. You see this here: http://www.reebee.net/bands/blue-suede-boppers/ Basically, jquery adds a speak icon and a player when the link is clicked, and the link title flies off and fades to the right: [code] jQuery('a[href$=mp3]:

[jQuery] Animate children of element?

2009-03-30 Thread Patrick Jarrett
What I have is a simple series of divs, and in the divs I have a few items of content, here's an example: Corporate Responsibility Lorem ipsum dolor sit amet. Sit amo mortus amorte. Now I have CSS tied to the container CSS. So the h3, p, and img

[jQuery] Animate background position problem

2009-03-22 Thread Hinch
I am trying to create a background fade using a transparent png and altering its position using jQuerys animate function. I've seen this code around a few times but I can't get it to work. The background moves to position but is not animated. I have moved the code into the header so it can be see

[jQuery] Animate using relative %

2009-03-05 Thread Adam Jessop
* Hi, I am working on a site where are wanting to create a full screen site using percentages for positioning and displaying of content. As part of the project we also want to have some animation to bring objects onto the page. We have the objects in their correct pos

[jQuery] Animate Delay Issue

2009-02-23 Thread Wolf
I have a strange delay issue. I'm working on a menu animation. When a user moves their mouse to the top, it will move the menu up and when they move their mouse to the bottom, it moves it down. When I first move the mouse over the menu, the animation fires. But there is a big delay (maybe 2 se

[jQuery] animate CSS margin shift onclick

2009-02-22 Thread stvwlf
Hi When an that is the header in an accordion is clicked, jQuery adds an "active" class to the h3. The stylesheet then assigns h3.active { left-margin: -25px } I would like to animate the 25 px shift from the default left-margin: 0px to -25px, and also animate the return back to 0px when

[jQuery] JQuery Animate Event

2009-02-11 Thread rene.olivo
Is there a way to execute a function while there's an even in transition? thanks

[jQuery] animate the top of a div before the bottom

2009-02-10 Thread pedalpete
I'm trying to get an animation effect similar to opening a application on mac, where the top of the div will animate first, followed by the bottom of the div. Top of the div gets wider, and tapers to the bottom and then the bottom half animates to match. Has anybody seen this before? The div has

[jQuery] .animate() custom animation callback?

2009-01-14 Thread lhwpa...@googlemail.com
hi, im using .animate() to create a custom animation. is there any way to handle a callback function? "normal" . animation() has a parameter for a callback function but not the one for own animations?

[jQuery] .animate() queue without pause between animations

2009-01-13 Thread Miloš Rašić
I'm using .animate() for a rotating navigation menu of 5 items, where the currently selected item is in the center. When I click on an icon next to the central everything works ok, but when I click on an icon to the far left or far right, two calls to .animate() are needed per icon for all icons t

[jQuery] animate() syntax question

2008-12-28 Thread pixeline
hi friends, i've had this question lying for so long in the bottom of my mind, i thought i should finally clear it up: I'm using a lot the animate() function, using a callback, and no easing parameter. Such as: $('div').animate({width: 400},'fast', function(){ $(this).addClass('visib

[jQuery] .animate and border sides

2008-12-26 Thread Nikola
Hello, I am trying to animate a color change for the top and right borders of an element. A) In Firefox the border size is animated but the color change is not on the first hover only. After that the border color changes as though you were affecting it via a pseudo class in CSS. B) Behavior in

[jQuery] animate image size

2008-12-18 Thread Mike Dodge
I saw the demos where div sizes were animated. Can this be done with an image? I have some button(image) links on my site. I would like to make each image a little bigger when you hover over it. Anyone know the best way to do this?Thanks Mike

[jQuery] animate problem with IE7

2008-11-22 Thread ^AndreA^
Hi all, I'm working on a slideshow/carousel: http://www.lesperimento.netsons.org/various/my_carousel/ It's works fine except than in IE7/6 (basically as usual... ;-) ) It's weird also because the "next button/arrow" works well under IE but NOT the "prev button/arrow"; and that's the problem. I

[jQuery] Animate Issue - bouncing menu

2008-11-02 Thread benmanson
Hi, Hoping someone can help with this. This is my first jquery script and I am animating a menu item to move up and down (using absolute positioning) when hovered on/off. The problem I have is that the menu gets the bounces if you hover on the edge of the menu item frame or hover on and off too

[jQuery] Re: blockUi and Jquery animate function problem (IE7 of course)

2008-10-30 Thread asiarlis
On Oct 30, 8:15 pm, Mike Alsup <[EMAIL PROTECTED]> wrote: > > > Try changing your block call to something like this: > > > > var $holder = $('#sendToFriendHolder'); > > > if ($.browser.msie) > > >     $holder[0].style.removeAttribute('filter'); > > > $holder.block({ > > >    // block options her

[jQuery] Re: blockUi and Jquery animate function problem (IE7 of course)

2008-10-30 Thread Mike Alsup
> > Try changing your block call to something like this: > > > var $holder = $('#sendToFriendHolder'); > > if ($.browser.msie) > >     $holder[0].style.removeAttribute('filter'); > > $holder.block({ > >    // block options here > > > }); > > Thank you :) > It works great > > So... and what ca

[jQuery] Re: blockUi and Jquery animate function problem (IE7 of course)

2008-10-30 Thread asiarlis
On Oct 29, 11:42 pm, Mike Alsup <[EMAIL PROTECTED]> wrote: > > Wrong link ...http://www.britishschool.edu.gr/newsView.php?newsId=4 > > Try changing your block call to something like this: > > var $holder = $('#sendToFriendHolder'); > if ($.browser.msie) >     $holder[0].style.removeAttribute('fi

[jQuery] Re: blockUi and Jquery animate function problem (IE7 of course)

2008-10-29 Thread Mike Alsup
> Wrong link ...http://www.britishschool.edu.gr/newsView.php?newsId=4 Try changing your block call to something like this: var $holder = $('#sendToFriendHolder'); if ($.browser.msie) $holder[0].style.removeAttribute('filter'); $holder.block({ // block options here });

[jQuery] Re: blockUi and Jquery animate function problem (IE7 of course)

2008-10-29 Thread asiarlis
On Oct 29, 2:19 pm, asiarlis <[EMAIL PROTECTED]> wrote: > On Oct 29, 1:32 am, Mike Alsup <[EMAIL PROTECTED]> wrote: > > > > Recently i decide to use theanimatefunction ofjQueryto pop up an > > > absolute position it window that holds form data. The problem is that > > > when i use theanimatefunc

[jQuery] Re: blockUi and Jquery animate function problem (IE7 of course)

2008-10-29 Thread asiarlis
On Oct 29, 1:32 am, Mike Alsup <[EMAIL PROTECTED]> wrote: > > Recently i decide to use the animate function of jQuery to pop up an > > absolute position it window that holds form data. The problem is that > > when i use the animate function to pop up the window the blockUi in > > Internet explor

[jQuery] Re: blockUi and Jquery animate function problem (IE7 of course)

2008-10-29 Thread asiarlis
On Oct 29, 1:32 am, Mike Alsup <[EMAIL PROTECTED]> wrote: > > Recently i decide to use theanimatefunction ofjQueryto pop up an > > absolute position it window that holds form data. The problem is that > > when i use theanimatefunction to pop up the window the blockUi in > > Internet explorer 7 c

[jQuery] Re: blockUi and Jquery animate function problem (IE7 of course)

2008-10-28 Thread Mike Alsup
> Recently i decide to use the animate function of jQuery to pop up an > absolute position it window that holds form data. The problem is that > when i use the animate function to pop up the window the blockUi in > Internet explorer 7 cannot handle oppacity and cannot display the > loader. Just wh

[jQuery] blockUi and Jquery animate function problem (IE7 of course)

2008-10-27 Thread asiarlis
I use blogUi plug in for a long time know and everything works fine. Excellent job. Recently i decide to use the animate function of jQuery to pop up an absolute position it window that holds form data. The problem is that when i use the animate function to pop up the window the blockUi in Intern

[jQuery] Animate with IE6 artifacts

2008-10-17 Thread Sigurd
Hi everyone, I'm having a problem with IE6 and animate({opacity: "hide", height: "hide"},300); In all browsers including IE6 the feature works, however with IE6 it produces artifacts as if it is jumping up and down before it completes the animation. I have simplified my code into one html file t

[jQuery] Re: Slide Show (S6) Autoplay Addon Beta (w/ Scroll-Up Effect) - jQuery Animate in Action

2008-10-15 Thread rolfsf
Chuck, I suspect it's only the svg object being used for the background, which really doesn't have anything to do with the 'code' - only the implementation. I'm looking at it in Safari, so I'm only guessing. Perhaps Gerald can add a simple workaround, or an example without the gradient On Oct

[jQuery] Re: Slide Show (S6) Autoplay Addon Beta (w/ Scroll-Up Effect) - jQuery Animate in Action

2008-10-15 Thread C.Everson
On Tue, 14 Oct 2008 21:51:46 -0700 (PDT), Gerald wrote: > See an example slide show in action @ > http://slideshow.rubyforge.org/autoplay.html The URL presents this message: "Microsoft's Internet Explorer browser has no built-in vector graphics machinery required for "loss-free" gradient bac

[jQuery] Slide Show (S6) Autoplay Addon Beta (w/ Scroll-Up Effect) - jQuery Animate in Action

2008-10-15 Thread Gerald
Hello, At yesterday's Vancouver Ajax Hack Night inspired by Karl Swedberg's Scroll Up Headline Reader jQuery Tutorial [1] I put together an autoplay addon (Beta version) for the S6 slide show package. Using jQuery's animate[2] function lets you loop through slides in autoplay with a scroll-u

[jQuery] Animate backgroundColor?

2008-10-10 Thread Jimbo M
I'm fresh and green to jQuery and enjoying it immensely. One thing I'm used to doing in AJAX is to animate a background-color across a range specified like #fff -> #000 When I try doing this using $('#Panel').animate({ backgroundColor: #000}, 1000) I get an error because it doesn't seem to know

[jQuery] animate problem when using ems and ie

2008-10-02 Thread ThatSteveGuy
Has anyone had a problem animating the left position of an element when using em units in IE? It works fine in Firefox, but in IE it seems to reset my container to either it's original position or zero, not sure which, before running the animation. I would like to leave the units in ems if at all

[jQuery] jQuery animate function + IE

2008-09-25 Thread weidc
Hi, I got some buttons to show the prev/next image or to close it 'cause it is allready big, in front of the others and draggable. This code works in every browser except for IE. IE doesn't go through the function of animate(). so he doesn't remove the div and the first image doesn't get visible

[jQuery] animate width or height form auto to fixed size _and back_?

2008-09-07 Thread stephen friedrich
I built a box/panel that collapses to the left, but so that the header keeps visible with a small width. By default (in expanded state) it should have width: auto. Collapsing is easy: boxHeader.animate({width : '19px'}, 'fast'); However: Is there an easy way to expand it back? It would be very

[jQuery] animate width or height form auto to fixed size _and back_?

2008-09-07 Thread stephen friedrich
I built a box/panel that collapses to the left, but so that it keeps visible with a small width. By default (in expanded state) it should have width: auto. Collapsing is easy: boxHeader.animate({width : '19px'}, 'fast'); However: Is there an easy way to expand it back? It would be very nice if

[jQuery] Animate Query

2008-09-01 Thread [EMAIL PROTECTED]
Hey All, Im kind of new to all this jQuery stuff ... Im building a site at the moment and i want to put some jQuery in, but im not sure how to go about it. What i want to do is wait about 2 or 3 seconds after the page has loaded, fade in some text, wait another 2 or 3 seconds, then have it scrol

[jQuery] Animate before submit

2008-08-29 Thread Boersnoes
Hi, I'm trying to animate my page before a form is submitted (regular, no ajax). $(".advancedSearchForm").submit(function(){ $(".colorList").slideToggle("fast", function(){ $(this).html("loading"); $(this).slideToggle("slow"); }

[jQuery] animate in order

2008-08-28 Thread Ronn
I have two items: $('#backDropLeft').animate({height:550}, {duration: 750, easing: 'easeOutBack'}); $('#contactBox').fadeIn(1000, function() { }); How can I make contactBox wait until backDropLeft is finished to run its animate?

[jQuery] .animate , display:"none" not working

2008-07-22 Thread Geir
Hi! I have a problem on an animated hover-out. The display (#K_meny li) sticks to "block". And I want to get it to "none". What is the problem and what can I do? I also have a minor problem on not getting the z-index I want. The "#K_meny li" comes on top no matter what I do. Solutions? Thanks!

[jQuery] Re: jQuery animate (help needed)

2008-07-21 Thread Geir
Ok, I've simplified a little. My code is below.. I have a problem on hover out. The display (#K_meny li) sticks to "block". And I want to get it to "none". What is the problem and what can I do? I also have a minor problem on not getting the z-index I want. The "#K_meny li" comes on top no matt

[jQuery] Re: jQuery animate (help needed)

2008-07-19 Thread Geir
Ok, this is what I've done so far.. ( I need to fix: 1. Stop the animation when in/out 2. Proper queuing 3. Getting everything back to start-position (remove style?) .. see the comments) $(document).ready(function(){ $('#K_meny li').hide(); });

[jQuery] Re: jQuery animate (help needed)

2008-07-18 Thread Geir
Wow! You are amazing! I felt stuck on this. Tried Talkfrilance.com, but no answers. And here you are enlightening me.. Thanks a lot! (I'll post again when I tried out the new code)

[jQuery] Re: jQuery animate (help needed)

2008-07-18 Thread Mike Alsup
> Dang, Mike. I'm sure glad you're around to correct my mistakes. Right back atcha, Karl. :-)

[jQuery] Re: jQuery animate (help needed)

2008-07-18 Thread Karl Swedberg
On Jul 18, 2008, at 9:25 AM, Mike Alsup wrote: clip is a valid css property but it is not supported by jQuery's animate function. If you need to animate the clip property then you have to do it manually (without using animate). Mike In that case, the problem with the first part of his cod

[jQuery] Re: jQuery animate (help needed)

2008-07-18 Thread Karl Swedberg
Dang, Mike. I'm sure glad you're around to correct my mistakes. Two in one day! :-D --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Jul 18, 2008, at 9:25 AM, Mike Alsup wrote: clip is a valid css property but it is not supported by jQuery's animate functi

[jQuery] Re: jQuery animate (help needed)

2008-07-18 Thread Mike Alsup
clip is a valid css property but it is not supported by jQuery's animate function. If you need to animate the clip property then you have to do it manually (without using animate). Mike > The problem is that clip is not a valid HTML attribute. As far as I   > know, it was only used for the ele

[jQuery] Re: jQuery animate (help needed)

2008-07-18 Thread Karl Swedberg
Hi Geir, The problem is that clip is not a valid HTML attribute. As far as I know, it was only used for the element in Netscape 3 and 4. --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Jul 18, 2008, at 6:48 AM, Geir Solerød wrote: Hi! I'm rather new to

[jQuery] jQuery animate (help needed)

2008-07-18 Thread Geir Solerød
Hi! I'm rather new to js, jQuery (and this mail-list). I'm trying to make a fancy menu using jQuery. I need some help.. This is my code so far, but I've only had sucsess with the three first lines. After that I don't know what is wrong.. $(document).ready(function(){ $('#K_meny'

[jQuery] animate problem

2008-07-16 Thread rayfidelity
Hi, I'm currently using: $("#msg").empty().prepend('It works!').show("slow").animate({opacity: 1.0}, 5000).fadeOut("slow"); But the problem is, that it's still showing (for the specified 5000ms) after i invoke new action which should display something different than "It works!" instead waiting

[jQuery] Animate Clip CSS Properties

2008-07-12 Thread Wil Everts
Hello All, I've found myself stuck with something. I have an image which has a clip applied to it: #some_image { clip: rect(0px, 150px, 0px, 0px); } and I want to animate it but the .animate function doesn't seem to work using the following: $('#some_image ').animate({clip:"rect(0px, 450px, 0

[jQuery] Re: jQuery animate performance help...please!!!

2008-07-11 Thread Dan G. Switzer II
Tom, >i'm relatively new to jQuery and the world of javascript but since >i've started using it it's opened up a huge amount of possibilities >that i'm know everyone has encountered!! > >anyway, i was hoping that someone with a bit more experience and >knowledge could help me out and possibly tak

[jQuery] jQuery animate performance help...please!!!

2008-07-11 Thread tom gee
hi all, i'm relatively new to jQuery and the world of javascript but since i've started using it it's opened up a huge amount of possibilities that i'm know everyone has encountered!! anyway, i was hoping that someone with a bit more experience and knowledge could help me out and possibly take a

[jQuery] Animate Sliding Margin Problem

2008-06-13 Thread mlmorg
I am trying to create a jquery script that slides in a div from the right. I've written out code that works in Safari, except for the fact that there is some weird margin problem going on that makes the page widen as the div slides in (a horizontal scrollbar appears in Safari). In IE the script d

[jQuery] Animate() background colours

2008-05-28 Thread fambi
It looks like animate() doesn't take too well to background colours. Does anyone know a way of animating an objects colour from one to another?

[jQuery] animate() for background-image and/or classnames?

2008-05-14 Thread MrNase
Hi there! Is there any chance to use animate() to animate a background-image and/ or classnames? $("#block").animate({ backgroundImage: 'url(bla.gif)' }, 1500 ); Doesn't seem to work. :( Let's say I have an element with a red background and the class 'red', I want to remove the class 're

[jQuery] Re: JQuery animate wont work on Opera 9

2008-05-13 Thread Shabith Ishan
t think the "null" argument is necessary. Not sure if it > would cause problems, but it probably doesn't need to be there. > > Hope that points you in the right direction. > --Karl > _ > Karl Swedbergwww.englishrules.comwww.learningjquery.com > > O

[jQuery] Re: JQuery animate wont work on Opera 9

2008-05-13 Thread Karl Swedberg
/to/file.gif) 3. I don't think the "null" argument is necessary. Not sure if it would cause problems, but it probably doesn't need to be there. Hope that points you in the right direction. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com

[jQuery] animate wont work on Opera 9

2008-05-13 Thread Shabith Ishan
hi! Im new to JQuery and my issue is animate is not working in opera. here is the code, function ajaxpost() { var errors = MM_validateForm('txtName','','R','txtEmail','','RisEmail'); if(errors) { //alert( 'The following error(s) occurred:'+errors);

[jQuery] JQuery animate wont work on Opera 9

2008-05-13 Thread Shabith Ishan
hi! Im new to jquery and my issue is jquery animate wont work in opera 9. However its working perfectly on FF and Safari. here is the code, function ajaxpost() { var errors = MM_validateForm('txtName','','R','txtEmail','','RisEmai

[jQuery] Animate to bottom left corner?

2008-04-07 Thread Michael Price
Hi all, Got an image absolutely positioned inside a relatively positioned DIV. When I mouseover it, it stretches via jQ's built in animation functions to a wider, taller version. Awful ASCII art coming up: --> ON MOUSE OVER, EXPANDS OUTWARD || | XX | || -- | | | v

[jQuery] Animate function. Once I animate how do I er.... de... animate

2008-02-13 Thread somedude
Ok sorry about the title, don't know what to say. I have a site for a client, and when you click a certain div it animates with a marginTop -=300px like effect so the div is just visible sliding in behind another div. Now, if the user clicks the div again it will do the same and go up by 300px.

[jQuery] animate calculates wrong duration with linebreaks?

2008-02-01 Thread lgr888999
http://paste.css-standards.org/31399/view Checkout the slide out of Ice Hockey or Tennis. Seems like the "duration" is calculated wrong when there are linebreaks? The funny part about it is that the slide up works fine. To me, this occur on both firefox 2 and safari 3. Is it a jquery bug? is it

[jQuery] animate

2008-01-17 Thread KidsKilla
Hi, everyone! I haven't found in docs, how can i stop an animation of 1 css rule without touching everything other? for example: $('div').animate({width:'+=300'}, 'slow'); $('div').animate({opacity:'hide'}, 'slow'); $('button').click(function(){ $('div').stop('width').animate({width:'-=300'}, 's

[jQuery] animate

2008-01-17 Thread KidsKilla .grin! wuz here
Hi, everyone! I haven't found in docs, can i stop an animation of 1 css rule without touching everything other? for example: $('div').animate({width:'+=300'}, 'slow'); $('div').animate({opacity:'hide'}, 'slow'); $('button').click(function(){ $('div').stop('width').animate({width:'-=300'}, 'slow'

[jQuery] .animate({width:'show'},"2500") misbehaviour in FF,IE7 (width scales up to 1000)

2008-01-12 Thread paul7685
Hello, on the breadcrumb-element (bottom right) on http://www.pcwehle.de/demo/hm/index.htm .animate({width:'show'},"2500") seems not to be able to read the correct width of the li elements in FF2 and IE7 - IE6 works just fine. What happens is that it scales the width of the elements up to about

[jQuery] animate() with em fontsize units

2007-12-20 Thread Andrew Ma
Hello, I have a chunk of code that animates fontsize changes with the units set to em. The animation is a bit wacky. Am I doing something wrong or have I found a bug? #test { font-size:1.2em; } http://www.google.com";>Test $('#test').mouseover(function() {

[jQuery] animate & hide

2007-09-13 Thread Stefan Kilp [sk-software]
it is certainly only a newbie problem ... i try to set my message to red, animate it to white an the hide it msg.css("background-color","#faa"); msg.animate({'backgroundColor':'#fff'}, 1000); msg.hide(); but it will be hidden at once, without animating. if i remove

[jQuery] animate() canceling

2007-09-01 Thread emi polak
Hi, I am altering the "top" property of a floating label in a webpage. The "top" adjustement is fired at page scroll, so that the label would always stay in its place. Now I would like to animate the label between its oldPosition and newPosition. So I use animate() to set the "top" property, but th

  1   2   >