[jQuery] Where to find a proper slide effect?

2009-05-26 Thread M.M.
I've searched the archives, and lot of people asked this question, but there were no answers, just links to UI docs or that shouldn't be too hard using some css and animation.. Anyway, I've made a demo of what I (we :) want: http://sklupc.com/slide/ The question: where to find or how to

[jQuery] Re: Where to find a proper slide effect?

2009-05-26 Thread M.M.
On May 26, 2:15 pm, Charlie charlie...@gmail.com wrote: look at demo on jQuery site, works exactly same as your sciptaculous examplehttp://docs.jquery.com/Tutorials:Live_Examples_of_jQuery. No, it doesn't, it looks exactly like my jQuery blind example on the left, and it's not what I need.

[jQuery] Re: Where to find a proper slide effect?

2009-05-26 Thread M.M.
On May 26, 8:32 pm, tain bugi@gmail.com wrote: they only have different easing value..otherwise they are identical. No they're not! Are we looking at the same page? The effect you get when you click Slide Out or Slide In on http://docs.jquery.com/Tutorials:Live_Examples_of_jQuery is NOT

[jQuery] Re: Getting the child element on click

2009-05-26 Thread M.M.
$('.feature h2').click(function() { $(this).siblings('p').slideToggle(); return false; });

[jQuery] Re: Where to find a proper slide effect?

2009-05-26 Thread M.M.
No, any suggestion is much appreciated, I did ask where to find or how to make, but all they were telling me is that the effect already exists, they didn't even see the difference between them... Anyway, I've already tried to make this work with animate() and, so far, failed... so I just asked

[jQuery] Re: Where to find a proper slide effect?

2009-05-27 Thread M.M.
Thanks Gavra, I just needed the idea :) I added the wrapper animation and it works fine now. For those guys who asked it before, I made 'myslide' effect based on UI 'slide', and it's on http://sklupc.com/slide2 (it works only up/ down for now)

[jQuery] Re: find reverse

2009-05-27 Thread M.M.
On May 27, 2:19 pm, Peter Marino marino.pe...@gmail.com wrote: Hi jQuery Group, is it possible find a node backwards instead of forwards. isn't that parents()? (not parent, parents :) http://docs.jquery.com/Traversing/parents

[jQuery] Re: Making a button in active

2009-05-27 Thread M.M.
Why don't you just add the class, like this: $(.btn).click(function(){ if($(this).hasClass('disabled')) //alert(can't touch this!); } else { $(this).addClass('disabled'); $(#somethingElse).doStuff('slow', function(){

[jQuery] Re: AJAX, Passing Array Data to $.get

2009-05-28 Thread M.M.
probably this: http://docs.jquery.com/Ajax/serialize