I would like to simulate an animation jQTouch in this fuction:

$(function(){
$('#form').submit( function(e){
        $.get('/result.php', function(data) {
    document.getElementById("result").innerHTML=data;   
    });
    CODE?!?
});

The function retrieves the data and writes it to the div "result", I would that after writing data, make an animation '.slideup' from #home to #result.

link|improve this question

71% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You can use jQT.goTo(Page, Animation) to transit to another "page" with a specified animation, e.g.

$('#form').submit(function(e) {
    $.get('/result.php', function(data) {
        $("result").html(data);
        jQT.goTo('#result', 'slideup');
    });
});

Here's the documentation: https://github.com/senchalabs/jQTouch/wiki/functions.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.