[jQuery] Re: jcarousel problem under Safari

2008-04-03 Thread tetrix
thank you On Apr 3, 4:22 pm, Jan Sorgalla <[EMAIL PROTECTED]> wrote: > Hi, > > On 3 Apr., 13:09, tetris <[EMAIL PROTECTED]> wrote: > > > i am experiencing this under safari: if i do resize my browser > > window , the carousel gets some very weird behavior, anyone > > experiencing this? > > yes, i

[jQuery] Re: counter like 1 of 10 for jcarousel

2008-04-01 Thread tetrix
ot;display" id in the html part On Mar 31, 1:14 pm, tetrix <[EMAIL PROTECTED]> wrote: > it's like the function > here:http://www.designis-fine.com/projects/logos--marks/ > > On 31 mar, 12:27, tetrix <[EMAIL PROTECTED]> wrote: > > > hello; > > i ne

[jQuery] Re: counter like 1 of 10 for jcarousel

2008-03-31 Thread tetrix
it's like the function here: http://www.designis-fine.com/projects/logos--marks/ On 31 mar, 12:27, tetrix <[EMAIL PROTECTED]> wrote: > hello; >  i need to make a function: it should get the length of an array then > everytime i click next it should increase its count unti

[jQuery] Re: learning jquery book source code

2008-03-31 Thread tetrix
thank you, i'll check this out, very good book btw. On 24 mar, 19:26, Karl Swedberg <[EMAIL PROTECTED]> wrote: > On Mar 24, 2008, at 6:45 AM, tetrix wrote: > > > > > i have downloaded the code source for learning jquery book but this > > code doesnt include

[jQuery] counter like 1 of 10 for jcarousel

2008-03-31 Thread tetrix
hello; i need to make a function: it should get the length of an array then everytime i click next it should increase its count until the length array ends. the next and prev hits would be placed just under this 1 of 10 counter. can anyone guide me on how to do this? i checked the Cycle plugin wi

[jQuery] learning jquery book source code

2008-03-24 Thread tetrix
i have downloaded the code source for learning jquery book but this code doesnt include all chapters in the book???

[jQuery] Re: fade out gallery onload

2007-12-31 Thread tetrix
> So, you want image 1 to be visible on page load, then fade out to > reveal image 2; then, image 2 should fade out to reveal image 3? yes right this is what i want > you want image 2 and 3 to fade in when they become visible yes >do you want that to occur at the same time that the previous one

[jQuery] Re: fade out gallery onload

2007-12-31 Thread tetrix
wrote: > On Dec 30, 2007, at 10:31 AM, Jeroen wrote: > > > > > On Dec 30, 2007 12:16 PM, tetrix <[EMAIL PROTECTED]> wrote: > > >> so no one knows how to do this simple thing? > > > If you want to perform the same function on more then one element, > &g

[jQuery] Re: fade out gallery onload

2007-12-30 Thread tetrix
so no one knows how to do this simple thing? On Dec 30, 12:16 am, tetrix <[EMAIL PROTECTED]> wrote: > On Dec 29, 1:57 pm, Jeroen <[EMAIL PROTECTED]> wrote: > > > On Dec 29, 2007 12:47 AM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > > hi, i

[jQuery] Re: fade out gallery onload

2007-12-29 Thread tetrix
$(document).ready(function(){ $(window).load( function () { $("img").fadeOut(4000); }) .end(); }); this code works, i just would like to have the same but with 3 images , how can it be done?

[jQuery] Re: fade out gallery onload

2007-12-29 Thread tetrix
On Dec 29, 1:57 pm, Jeroen <[EMAIL PROTECTED]> wrote: > On Dec 29, 2007 12:47 AM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > > > hi, i would like to achieve the following effect: > > when the page loads , 3 images loaded with an array fade out > > subsequently on top of the page then dis

[jQuery] Re: fade out gallery onload

2007-12-29 Thread tetrix
$(document).ready(function(){ $(window).load( function () { $("img").fadeOut(4000); }) .end(); }); this code works but i would like to do the same with 3 different images