VJ
20-06-11, 23:28
okay, i'm using jQuery but i don't think that makes a difference?
basically, I've got this code
$("input").click(function() {
$("#answerform").slideUp("fast").delay(400);
$("#log").html( "answering: " + $(":checked").val() );
$("#" + $(":checked").val()).after($("#answerform"));
$("#answerform").slideDown("slow");
});
Currently, it appears to do everything at the same time...
Is there a way I can get it run as a script? like each line after another?
basically, I've got this code
$("input").click(function() {
$("#answerform").slideUp("fast").delay(400);
$("#log").html( "answering: " + $(":checked").val() );
$("#" + $(":checked").val()).after($("#answerform"));
$("#answerform").slideDown("slow");
});
Currently, it appears to do everything at the same time...
Is there a way I can get it run as a script? like each line after another?