probably this:
http://docs.jquery.com/Ajax/serialize
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(){
$
On May 27, 2:19 pm, Peter Marino 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
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)
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
$('.feature h2').click(function() {
$(this).siblings('p').slideToggle(); return false;
});
On May 26, 8:32 pm, tain 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 the
slide effect
On May 26, 2:15 pm, Charlie 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.
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 ma
9 matches
Mail list logo