[jQuery] Re: Get dynamic width

2009-07-03 Thread eewan
Thank you very much :-)

[jQuery] Re: Get dynamic width

2009-07-03 Thread eewan
Thank you very much. This done the job :-)

[jQuery] Get dynamic width

2009-07-03 Thread eewan
Hello, I want to find full width of all elements in one div. Here is example code: text text text text $("#scroller p").each( function(i){ var elSize = $(this).width();}); I need total width of all :-) Thanks in advance

[jQuery] Re: R: [jQuery] mouseover / mouseout

2008-09-27 Thread eewan
).hover(function() { >     $(this).stop().animate({ >     opacity : 1 >     }, 600); >     }, >     function(){ >     $(this).stop().animate({ >     opacity : 0.33 >     }, 800); > > }); > > Diego Valobra > > --- Sab 27/9/08, eewan <[EMAIL PR

[jQuery] problem with mouseover / mouseout

2008-09-27 Thread eewan
I'm trying to make script that has faded image at start 30%, after hover sets opacity to 100% and on mouse out puts it back to 30%. so i did this: $(document).ready(function(){ $('a.view').fadeTo('fast', 0.33);

[jQuery] mouseover / mouseout

2008-09-27 Thread eewan
Hey guys, I have problem and my programmer isn't around to help me :( Look at main page: http://www.mycitysolutions.com/ I used $('a.view').fadeTo('fast', 0.33) to fade out images on load and $('a.view').mouseover(function () { $(this).fadeTo('normal', 1); }); $("a.view").mouseout(function () { $