[jQuery] Re: FadeIn Text

2009-11-19 Thread Peter
It seems IE8 inherit the bug on opacity in IE7. Which remove the "Bold" On Nov 19, 5:21 am, Peter Crymble wrote: > Hey - hope you are all well. > > I have a simply Jquery script which acts as a rollover - on mouseover > if fades the opacity, and then back again. Heres the code: > >     $(document

[jQuery] Re: fadeIn and Out not working on IE but working on firefox

2009-10-15 Thread Mr J
hi, thanks for the quick answer, i did try it but it did not work, i think is something to do with the DOM because the inputs are not in the DOM when the page is loaded but i do not see how to solve it. thanks for the help On 15 okt, 11:21, "Jonathan Vanherpe (T & T NV)" wrote: > Mr J wrote: >

[jQuery] Re: fadeIn and Out not working on IE but working on firefox

2009-10-15 Thread Jonathan Vanherpe (T & T NV)
Mr J wrote: hi, i run into a probelm when i want to use the fadein and out function for a new dynamic added inputs. you can add inputs dynamically and i want to do that with fadeIn and Out. it is working great in firefox but not in IE. i think the problem is the new added rows are not in the DO

[jQuery] Re: fadein is not a function?

2009-09-30 Thread jessie
No its ok,,, Please understand, this is my 3rd day at looking at jQuery... no previous javascript knowledge / or programming, Only a noob at css and html. have been self teaching myself for 1 year. Jess :) On Oct 1, 3:05 pm, Dhruva Sagar wrote: > Np, it happens to everyone, sorry for being a

[jQuery] Re: fadein is not a function?

2009-09-30 Thread Dhruva Sagar
Np, it happens to everyone, sorry for being a bit harsh :). Thanks & Regards, Dhruva Sagar. Ogden Nash - "The trouble with a kitten is that when it grows up, it's always a cat." On Thu, Oct 1, 2009 at 10:09 AM, jessie wrote: > > Ye

[jQuery] Re: fadein is not a function?

2009-09-30 Thread jessie
Yes thank-you... after i posted i had a look. I guess looking at this type of *new code* has boggled up my eyes ;-) On Oct 1, 2:36 pm, Dhruva Sagar wrote: > Did you even look at jQuery's site ?the function is fadeIn with a capital > 'I' > > example : $("selector").fadeIn("slow"); > > Thanks & R

[jQuery] Re: fadein is not a function?

2009-09-30 Thread Dhruva Sagar
Did you even look at jQuery's site ?the function is fadeIn with a capital 'I' example : $("selector").fadeIn("slow"); Thanks & Regards, Dhruva Sagar. Joan Crawford - "I, Joan Crawford, I believe in the dollar. Everything I earn, I

[jQuery] Re: fadeIn and fadeOut divs

2009-09-23 Thread craigeves
You are a genius... I think I read that somewhere else too, but didn't take too much notice. Cheers C On Sep 23, 11:44 pm, James wrote: > fadeIn and fadeOut both takes a callback function (2nd parameter) that > executes when completed: > > $("#latest_tweets").fadeOut(1000, function() { >     $

[jQuery] Re: fadeIn and fadeOut divs

2009-09-23 Thread James
fadeIn and fadeOut both takes a callback function (2nd parameter) that executes when completed: $("#latest_tweets").fadeOut(1000, function() { $("#weight_log").fadeIn(1000); }); On Sep 23, 12:39 pm, craigeves wrote: > lease help... > > What I need to do is simple. > > When I click on .log

[jQuery] Re: fadeIn with IE 8 Compatibility Mode forced off

2009-09-20 Thread Mad-Halfling
Sorry to bump this, but can anyone shed any light on this please? On Sep 16, 10:51 am, Mad-Halfling wrote: > Hi, are there problems with the animation with IE8 compatibility mode > forced off?  I am using > meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8" > to force IE 8 out of compatib

[jQuery] Re: fadeIn() on elements with alpha filter not working properly in IE

2009-06-03 Thread Luch Univision
Hey guys, due to corporate restrictions I couldn't share a link to the live problem. However I managed to solve the issue by doing a separate fadeIn() of each element inside my and treating the one with the opacity like Danny mentioned above: $('elementToFade').find('div.opacity').css('filter',

[jQuery] Re: fadeIn() on elements with alpha filter not working properly in IE

2009-06-02 Thread danny.copel...@gmail.com
How about targeting the child, like so: $('elementToFade').find('div.opacity').css('filter','alpha (opacity=80)').fadeIn(); On Jun 2, 3:21 pm, Luch Univision wrote: > Mauricio, > > I am dealing with the fading in of one which in turn has three > child elements: > > ... > >     >     >  

[jQuery] Re: fadeIn() on elements with alpha filter not working properly in IE

2009-06-02 Thread Matt Critchlow
est case. > Woulkd you please host a test case? > Or, provide the relevant HTML markup and jQuery code? > Maurício > >   -Mensagem Original- >   De: Luch Univision >   Para: jQuery (English) >   Enviada em: terça-feira, 2 de junho de 2009 16:21 >   Assunto: [jQuer

[jQuery] Re: fadeIn() on elements with alpha filter not working properly in IE

2009-06-02 Thread Mauricio (Maujor) Samy Silva
2009 16:21 Assunto: [jQuery] Re: fadeIn() on elements with alpha filter not working properly in IE Mauricio, I am dealing with the fading in of one which in turn has three child elements: ... ... .opacity { -moz-opacity: .8; opacity

[jQuery] Re: fadeIn() on elements with alpha filter not working properly in IE

2009-06-02 Thread Luch Univision
Mauricio, I am dealing with the fading in of one which in turn has three child elements: ... ... .opacity { -moz-opacity: .8; opacity:0.80; filter:alpha(opacity=80); } ... $('#foo').fadeIn('slow'); ... So, by doing what you suggested, the entire will have the

[jQuery] Re: fadeIn() on elements with alpha filter not working properly in IE

2009-06-02 Thread Mauricio (Maujor) Samy Silva
Sorry for the previous post.Hit send early :-( Reset the opacity to IE when fading in the element like so: $('elementToFade').css('filter','alpha(opacity=80)').fadeIn(); Maurício -Mensagem Original- De: Luch Univision Para: jQuery (English) Enviada em: terça-feira, 2 d

[jQuery] Re: fadeIn() on elements with alpha filter not working properly in IE

2009-06-02 Thread Mauricio (Maujor) Samy Silva
Reset the opacity to IE when fading in the element like so: -Mensagem Original- De: Luch Univision Para: jQuery (English) Enviada em: terça-feira, 2 de junho de 2009 14:46 Assunto: [jQuery] fadeIn() on elements with alpha filter not working properly in IE I am running in

[jQuery] Re: fadeIn() on elements with alpha filter not working properly in IE

2009-06-02 Thread Gustavo Salomé
Its true, i had the same problem a while ago. I couldnt solve it. 2009/6/2 Luch Univision > > I am running into an effect issue with IE only. I have a with > about 4 and I apply the fadeIn() on individual based on user > actions. Inside of each I have a div that is styled with: > > -moz-op

[jQuery] Re: fadeIn, fadeOut malfunction

2009-05-13 Thread weidc
guess i would do like this. didn't tested it. if(!$("div").hasClass("over")) { $("div").hover( function() { $(this).addClass("over"); $(this).fadeIn() }, function() { $(this).fadeOut(function() { $(this).removeClass("over

[jQuery] Re: fadein thumbnails when loaded

2009-04-29 Thread Rick Faircloth
Thanks for the explanation, Kevin! Rick On Wed, Apr 29, 2009 at 12:58 PM, Kevin Dalman wrote: > > Hi Rick, > > Karl's suggestion seems the most elegant (assuming it works OK). > > Here is some sample code for what he is suggesting > > -- in HEAD or a stylesheet... > body.js #media-gallery ul

[jQuery] Re: fadein thumbnails when loaded

2009-04-29 Thread Kevin Dalman
Here is a variation on Eric's idea. But in this example, instead of writing the CSS rule via Javascript, write a rule to *negate it* inside a noscript tag. -- in HEAD or a stylesheet... #media-gallery ul li img { /* opacity *may* work better than display:none */ opacity: 0.01; filter: al

[jQuery] Re: fadein thumbnails when loaded

2009-04-29 Thread Kevin Dalman
Hi Rick, Karl's suggestion seems the most elegant (assuming it works OK). Here is some sample code for what he is suggesting -- in HEAD or a stylesheet... body.js #media-gallery ul li img { /* opacity *may* work better than display:none */ opacity: 0.01; filter: alpha(opacity=1); }

[jQuery] Re: fadein thumbnails when loaded

2009-04-28 Thread Eric Garside
I don't know that would work, Karl. It would have to be either at the bottom of the page, as the elements wouldn't be in the dom yet if it was just up top. But, that did inspire an idea. If you want to keep the compliance, you could try the following: Test var css = document.create

[jQuery] Re: fadein thumbnails when loaded

2009-04-28 Thread Rick Faircloth
>> In the you can do this: >> document.documentElement.className = 'js'; >> Then you can set styles for elements as descendants of .js. Karl...will you explain a little more about what this means and perhaps give an example of its implementation? Or is there a blog or tutorial somewhere? Thank

[jQuery] Re: fadein thumbnails when loaded

2009-04-27 Thread Karl Swedberg
On Apr 27, 2009, at 8:05 PM, Eric Garside wrote: A) the images very quickly load then disapper. I dont want to hide the images in css incase people have js diasbled. You're out of luck, then. DOMReady will trigger after the images and html has loaded, so unless you hide them with CSS, there

[jQuery] Re: fadein thumbnails when loaded

2009-04-27 Thread David
Ok... i sorted the initial problems out, i load the css that hides the elements using javscript: document.write(''); But i still think it is not dealing with the images on a per load basis but on whole, any ide

[jQuery] Re: fadein thumbnails when loaded

2009-04-27 Thread David
Eric, thanks for the input. I think (not sure) the way i have the code done it waits for all images to load before fading them in, as opposed to fading the individual image in when loaded. I found this: http://clagnut.com/sandbox/imagefades/ Which seems to do eveyrhing i want including the imag

[jQuery] Re: fadein thumbnails when loaded

2009-04-27 Thread Eric Garside
> A) the images very quickly load then disapper. I dont want to hide the images > in css incase people have js diasbled. You're out of luck, then. DOMReady will trigger after the images and html has loaded, so unless you hide them with CSS, there's no way to prevent the flash, afaik. > B) all th

[jQuery] Re: FadeIn/Out mulitple images in one container

2009-04-03 Thread Zachariah
I've solved this issue before using absolutely positioned divs. by having (in this case) three absolutely positioned divs within #lakeview-placeholder, each with the correct img src inside, you could hide two and leave one visible (using classes maybe). Then animate the fades to either crossfade o

[jQuery] Re: FadeIn/Out mulitple images in one container

2009-04-03 Thread Liam Byrne
Just bear in mind that that code will "fade in" as soon as the SRC attribute is set - it won't wait for the image to load...could result in an empty box fading in, and then the image suddenly appearing when it loads. you'll need to trigger a ".load" function for the image too; this should be

[jQuery] Re: FadeIn/Out mulitple images in one container

2009-04-02 Thread James
You need to place your content inside the callback function for fadeOut. The callback is executed after the content is faded out. $(document).ready(function() { $("#lakeview-gallery a").click(function(event) { $("#lakeview-placeholder").fadeOut(800, function() { // t

[jQuery] Re: fadeIn something from JSON

2008-12-09 Thread Jan Limpens
@karl: works great! thank you!! @botondus: that's exactly what I had before that, but then, out of some reason, the first hover would not show the item at all, only the second. On Tue, Dec 9, 2008 at 11:19 AM, botondus <[EMAIL PROTECTED]> wrote: > > Well if you want to fade in something it ha

[jQuery] Re: fadeIn something from JSON

2008-12-09 Thread botondus
Well if you want to fade in something it has to be hidden first. If the example with hide() doesn't work, just hide it straight from html. $.getJSON(urlForDescription, function(data) { $div = $("" + data + ""); $element.after($div).fadeIn(); }); On Dec 9, 12:06

[jQuery] Re: fadeIn something from JSON

2008-12-08 Thread Karl Swedberg
Hi Jan, Try changing this ... $.getJSON(urlForDescription, function(data) { $div = $("" + data + ""); $element.after($div).fadeIn(); }); to this ... $.getJSON(urlForDescription, function(data) { $("" + data + "") .hide()

[jQuery] Re: fadeIn something from JSON

2008-12-08 Thread Jan Limpens
On Mon, Dec 8, 2008 at 7:20 PM, MorningZ <[EMAIL PROTECTED]> wrote: > you'll have to do the fadeIn inside the callback of getJSON var showDescription = function() { $element = $("a.info", this); if ($element.next("div.info").length == 0) { var urlForDescription = $element.attr('hr

[jQuery] Re: fadeIn something from JSON

2008-12-08 Thread MorningZ
The getJSON makes the call *asynchronously*, meaning that when it hits that line, it calls it off to the side and doesn't wait for it to finish before moving onto the next line you'll have to do the fadeIn inside the callback of getJSON

[jQuery] Re: fadeIn nav help

2008-10-10 Thread Liam Potter
ahh forgot to put the class back in.. Cheers MorningZ, all is good now. MorningZ wrote: Your selector $("#wrapper #topbar a.nav") your html home See the problem between the two? On Oct 10, 10:52 am, Liam Potter <[EMAIL PROTECTED]> wrote: Still not working, your example works fine

[jQuery] Re: fadeIn nav help

2008-10-10 Thread MorningZ
Your selector $("#wrapper #topbar a.nav") your html home See the problem between the two? On Oct 10, 10:52 am, Liam Potter <[EMAIL PROTECTED]> wrote: > Still not working, your example works fine, put in some similar edits to > make it work like i want it, still works > i copied over to

[jQuery] Re: fadeIn nav help

2008-10-10 Thread Liam Potter
Still not working, your example works fine, put in some similar edits to make it work like i want it, still works i copied over to my html and it doesn't work no mores, here is my code http://paste.pocoo.org/show/87601/ MorningZ wrote: This might help you out http://paste.pocoo.org/show/875

[jQuery] Re: fadeIn nav help

2008-10-10 Thread MorningZ
This might help you out http://paste.pocoo.org/show/87599/ On Oct 10, 9:33 am, evo <[EMAIL PROTECTED]> wrote: > Hi, new to jQuery trying to have a span fade in and fade out when I > hover over a link. this is the js > > > $(document).ready(function(){ > $("a.nav").mouseover(function() { > $("

[jQuery] Re: fadeIn nav help

2008-10-10 Thread Liam Potter
thanks a lot this is definitely going to help. at least I wasn't too far off. MorningZ wrote: This might help you out http://paste.pocoo.org/show/87599/ On Oct 10, 9:33 am, evo <[EMAIL PROTECTED]> wrote: Hi, new to jQuery trying to have a span fade in and fade out when I hover over a l

[jQuery] Re: fadein/fadeout conflicting

2008-10-01 Thread backdoc
Awesome! That works perfectly. Thanks for your help. On Oct 1, 12:19 am, ricardobeat <[EMAIL PROTECTED]> wrote: > fadeOut() actually sets display:none at the end of the animation, so > when this happens it triggers the onmouseout event. > > Try using the fadeTo() function (http://docs.jquery.co

[jQuery] Re: fadein/fadeout conflicting

2008-09-30 Thread ricardobeat
fadeOut() actually sets display:none at the end of the animation, so when this happens it triggers the onmouseout event. Try using the fadeTo() function (http://docs.jquery.com/Effects), it keeps the element in place: $("a").hover( function() { $(this).css("background", "white"

[jQuery] Re: fadeIn/fadeOut problems

2008-08-31 Thread Karl Swedberg
It's possible that the problem is being caused by event bubbling. Rather than using .mouseover() and .mouseout() , you might want to try .hover() instead, since it accounts for those issues. $(document).ready( function() { $("#main-menu ul.menu li") .hover( function()

[jQuery] Re: fadeIn/fadeOut problems

2008-08-31 Thread RichUncleSkeleton
I've made a test case: http://www.100pcmusic.com/files/menutest/ You should be able to see the problem clearly... -- Scott. On Aug 30, 9:14 pm, RichUncleSkeleton <[EMAIL PROTECTED]> wrote: > I'm creating a drop-down menu with jQuery. I made a basic version > which sets a sub-menu to display:b

[jQuery] Re: FadeIn for BlockUI

2008-08-21 Thread Mike Alsup
Currently, no, but I like the idea. Mike On Aug 14, 5:52 am, Max <[EMAIL PROTECTED]> wrote: > Hi all! > > I'd love to know if it's possible to add a fadeIn effect to BlockUI > (and specify the time), just like it proposes fadeOut: > > // fadeOut time in millis; set to 0 to disable fadeout on un

[jQuery] Re: Fadein with ajax load()

2008-07-02 Thread armsteadj1
try: $('#id-of-my-div').load('somescript.php?name='+escape($(this).val()), {}).fadeIn("slow"); On Jul 2, 9:35 am, Pickledegg <[EMAIL PROTECTED]> wrote: > Thanks Equand, unfortunately my fadeIn doesn't seem to have any > effect. Hmm, maybe its because the contents of the div has already > been lo

[jQuery] Re: Fadein with ajax load()

2008-07-02 Thread Pickledegg
Thanks Equand, unfortunately my fadeIn doesn't seem to have any effect. Hmm, maybe its because the contents of the div has already been loaded at this point? Perhaps I'll have to go a bit more technical than just using the load method... On Jul 1, 11:56 pm, Equand <[EMAIL PROTECTED]> wrote: > tr

[jQuery] Re: Fadein with ajax load()

2008-07-01 Thread Equand
try $('#id-of-my-div').load('somescript.php?name='+escape($(this).val()), {},function(){ $('#id-of-my-div').fadeIn("slow") }); http://docs.jquery.com/Ajax/load#urldatacallback On 1 июл, 14:26, Pickledegg <[EMAIL PROTECTED]> wrote: > I'm using an ajax load() with an onChange event: > > $('#id-of-

[jQuery] Re: FadeIn on $(document).ready flicker

2007-12-27 Thread Jeroen
On Dec 27, 2007 10:06 AM, Jeroen <[EMAIL PROTECTED]> wrote: On Dec 27, 2007 2:35 AM, Hamish Campbell <[EMAIL PROTECTED]> wrote: > > > > > Using FF2, FF3b2, IE7 and IE6 I don't get the flicker (XP SP2, > > 1280x1024, P4 3.2Ghz). Do you have a demo? Maybe you're running lots > > of other code first?

[jQuery] Re: FadeIn on $(document).ready flicker

2007-12-27 Thread Jeroen
On Dec 27, 2007 2:35 AM, Hamish Campbell <[EMAIL PROTECTED]> wrote: > > Using FF2, FF3b2, IE7 and IE6 I don't get the flicker (XP SP2, > 1280x1024, P4 3.2Ghz). Do you have a demo? Maybe you're running lots > of other code first? > > Hi Hamish, You can view a development version here: http://test.

[jQuery] Re: FadeIn on $(document).ready flicker

2007-12-26 Thread Hamish Campbell
Using FF2, FF3b2, IE7 and IE6 I don't get the flicker (XP SP2, 1280x1024, P4 3.2Ghz). Do you have a demo? Maybe you're running lots of other code first? On Dec 27, 10:51 am, Jeroen <[EMAIL PROTECTED]> wrote: > I'm using jQuery on my new photo blog. I am fading in the image when > the dom has load

[jQuery] Re: fadeIn/Out problem

2007-11-25 Thread krcko
yeap, your site is down, but i've found hoverIntent.js in jquery's SVN repository (i think jquery ui use it, but not sure, i've used windows' search, and didn't browse the sources). great plug-in, thanks!

[jQuery] Re: fadeIn/Out problem

2007-11-25 Thread Brian Cherne
It appears my web site is down (at least for me). I added a "release" zip file to the jquery plug-in page for hoverIntent, but it's not showing up now that I've logged out (not sure what's going on with that). Let me know if you need the code for hoverIntent... I'll send you a zip file. Brian. On

[jQuery] Re: fadeIn/Out problem

2007-11-25 Thread krcko
i've missed that one, thank you! you saved me lot of gray hairs :) On Nov 25, 12:24 pm, Wizzud <[EMAIL PROTECTED]> wrote: > You might want to look into using the hoverIntent plugin > ...http://jquery.com/plugins/project/hoverIntent > > On Nov 24, 9:46 pm, krcko <[EMAIL PROTECTED]> wrote: > > > H

[jQuery] Re: fadeIn/Out problem

2007-11-25 Thread Wizzud
You might want to look into using the hoverIntent plugin ... http://jquery.com/plugins/project/hoverIntent On Nov 24, 9:46 pm, krcko <[EMAIL PROTECTED]> wrote: > Hi to all, i'm having problems with fade in/out animation. I have > buttons and i want to make hover fade-in effect. > > this is html:

[jQuery] Re: fadeIn to ajax submit succes callback

2007-09-25 Thread muccy
> > Are you sure your ajax call is returning what you expect? Assuming you're > > using Firebug, check the response in your Firebug "Net" tab - you should see > > an XHR request that you can click on and see what's coming back from the > > server. >

[jQuery] Re: fadeIn to ajax submit succes callback

2007-09-22 Thread [EMAIL PROTECTED]
riginal Message ----- > From: <[EMAIL PROTECTED]> > To: "jQuery (English)" > Sent: Saturday, September 22, 2007 8:33 AM > Subject: [jQuery] Re: fadeIn to ajax submit succes callback > > > I tried to get(0) the target element and is reached by the selector

[jQuery] Re: fadeIn to ajax submit succes callback

2007-09-22 Thread Josh Nathanson
- From: <[EMAIL PROTECTED]> To: "jQuery (English)" Sent: Saturday, September 22, 2007 8:33 AM Subject: [jQuery] Re: fadeIn to ajax submit succes callback I tried to get(0) the target element and is reached by the selector: alert [htmlDivElement] So the selector is reached but

[jQuery] Re: fadeIn to ajax submit succes callback

2007-09-22 Thread [EMAIL PROTECTED]
I tried to get(0) the target element and is reached by the selector: alert [htmlDivElement] So the selector is reached but do not fade in simply appears in FF and crash all the validation/ajax script in IE7??? Any help??? Thanks Andrea On 22 sep, 04:35, muccy <[EMAIL PROTECTED]> wrote: >

[jQuery] Re: fadeIn to ajax submit succes callback

2007-09-22 Thread muccy
Are you sure $('.cfjq_form_target4') is a valid selector??? Try to alert($('.cfjq_form_target4').get(0)) to see if you select correct page element :) On Sep 22, 4:54 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hi this is my code: > > $(document).ready(function() { >

[jQuery] Re: FadeIn

2007-09-17 Thread 胡争辉
Have you noticed the "display: none;"? $(document).ready(function() { $('#fadein').fadeIn('slow'); }); fadein 2007/9/16, BooZker <[EMAIL PROTECTED]>: > > > I want something so simple,

[jQuery] Re: FadeIn

2007-09-15 Thread Erik Beeson
Maybe something like: $(window).load(function() { $('#myLogo').fadeIn('slow', function() { $('#navigation').fadeIn('slow'); }); }); That will fade in an element with id myLogo, then after it finishes fading in, it will fade in an element called navigation. See here: http://docs.j

[jQuery] Re: FadeIn problems

2007-08-27 Thread Neal
Hi Anders, http://63.241.146.156/contact.html I'm interested in why the paragraphs float in Safari, and why I don't see any fade-in in IE6 and IE7. Regards, Neal On Aug 26, 1:29 pm, Anders Mattson <[EMAIL PROTECTED]> wrote: > Could you post the html as well? > It's much easier to understand wh

[jQuery] Re: FadeIn problems

2007-08-26 Thread Anders Mattson
Could you post the html as well? It's much easier to understand what you're trying to do if we can see the html you're working on. /Anders On 25 Aug, 03:54, Neal <[EMAIL PROTECTED]> wrote: > I have a page with several DIVs, and inside each DIV are paragraphs > and headings. On the side I have a

[jQuery] Re: FadeIn effect not working on all image

2007-07-31 Thread Giuliano Marcangelo
Andrea, try this; $(document).ready(function() { $("div.jq img").fadeIn(3000); }); Giuliano On 31/07/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > Apply the fade in on the image. right now it's on the div. Or set a > height on the div equal to that of the image. tha

[jQuery] Re: FadeIn effect not working on all image

2007-07-31 Thread [EMAIL PROTECTED]
Apply the fade in on the image. right now it's on the div. Or set a height on the div equal to that of the image. that should help I think. On Jul 31, 9:12 am, Andrea - Aosta <[EMAIL PROTECTED]> wrote: > At this urlhttp://www.archea.it/architetti/index.php/home/progetto/1 > i have a fadeIn eff

[jQuery] Re: fadeIn, fadeOut, fadeTo, not working in IE6

2007-07-12 Thread [EMAIL PROTECTED]
Anyone? Isn't it a big oversight that the opacity changes aren't working in IE6?

[jQuery] Re: fadeIn, fadeOut, fadeTo, not working in IE6

2007-07-11 Thread [EMAIL PROTECTED]
Here is my code: $("#"+element+"_dragging").fadeTo("normal", 0.5);

[jQuery] Re: fadeIn w/jQuery 1.1.3?

2007-07-03 Thread Joel Birch
On 04/07/2007, at 12:24 AM, Priest, James (NIH/NIEHS) [C] wrote: $('#warning').css('display', 'none').fadeIn(1000); This seems to work as well... And in the previous version (1.1.2) it worked without first hiding things (?) Jim This affected the Superfish plugin too. The CSS to hide the subm

[jQuery] Re: fadeIn w/jQuery 1.1.3?

2007-07-03 Thread Priest, James (NIH/NIEHS) [C]
> -Original Message- > From: Brandon Aaron [mailto:[EMAIL PROTECTED] > Sent: Tuesday, July 03, 2007 10:06 AM > To: jquery-en@googlegroups.com > Subject: [jQuery] Re: fadeIn w/jQuery 1.1.3? > > The fade in message is not hidden. Try: > $('#warning').cs

[jQuery] Re: fadeIn w/jQuery 1.1.3?

2007-07-03 Thread Brandon Aaron
The fade in message is not hidden. Try: $('#warning').css('opacity', 0).fadeIn(2000); or $('#warning').fadeOut(2000).fadeIn(2000); -- Brandon Aaron On 7/3/07, Priest, James (NIH/NIEHS) [C] <[EMAIL PROTECTED]> wrote: > -Original Message- > From: John Resig [mailto:[EMAIL PROTECTED]

[jQuery] Re: fadeIn w/jQuery 1.1.3?

2007-07-03 Thread Mike Alsup
Brandon's fix corrected the problem for my test page: http://malsup.com/jquery/test/test.html Mike On 7/3/07, Priest, James (NIH/NIEHS) [C] <[EMAIL PROTECTED]> wrote: > -Original Message- > From: John Resig [mailto:[EMAIL PROTECTED] > Sent: Monday, July 02, 2007 3:17 PM > > Brandon

[jQuery] Re: fadeIn w/jQuery 1.1.3?

2007-07-03 Thread Priest, James (NIH/NIEHS) [C]
> -Original Message- > From: John Resig [mailto:[EMAIL PROTECTED] > Sent: Monday, July 02, 2007 3:17 PM > > Brandon just committed a fix for this to SVN. If you could try it, and > let us know if it works for you, that'd be good (if you can). > http://code.google.com/p/jquery Sorry for

[jQuery] Re: fadeIn w/jQuery 1.1.3?

2007-07-02 Thread Brandon Aaron
That should be: http://code.google.com/p/jqueryjs/ On 7/2/07, Aaron Heimlich <[EMAIL PROTECTED]> wrote: On 7/2/07, John Resig <[EMAIL PROTECTED]> wrote: > > http://code.google.com/p/jquery Returns "404 Not Found" -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: fadeIn w/jQuery 1.1.3?

2007-07-02 Thread Aaron Heimlich
On 7/2/07, John Resig <[EMAIL PROTECTED]> wrote: http://code.google.com/p/jquery Returns "404 Not Found" -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: fadeIn w/jQuery 1.1.3?

2007-07-02 Thread John Resig
Brandon just committed a fix for this to SVN. If you could try it, and let us know if it works for you, that'd be good (if you can). http://code.google.com/p/jquery --John On 7/2/07, Priest, James (NIH/NIEHS) [C] <[EMAIL PROTECTED]> wrote: I updated my main jquery.js file today updating my si

[jQuery] Re: FadeIn FadeOut callback timing problem in Internet Explorer 6/7

2007-05-18 Thread Pogo
I can't give a link. It's on a localhost in production. Sorry. I think the problem with putting one callback in the other is that I need them to be simultaneous. Putting one callback in the other makes the one wait until the other has executed to begin. On May 18, 5:54 pm, Emil Ivanov <[EMA

[jQuery] Re: FadeIn FadeOut callback timing problem in Internet Explorer 6/7

2007-05-18 Thread Emil Ivanov
Wild guess: Try by putting the fadeOut in the callback of the fadeIn... Give us some link, if possible, so we can see it... Regards, Emil Ivanov On May 18, 11:57 pm, Pogo <[EMAIL PROTECTED]> wrote: > I have two divs that I'm swapping out, using a fade effect: > > jQuery("#divPho