GMgKe586q6suSQnyqZLlGCooeWM

Pages

Search

Wednesday, December 22, 2010

Ajax In JQuery

Here's a code on how to get to ajax through jQuery:

$.ajax({
    data: 'test.html',
    success: function(data){
        $('#satu').text(data);
        alert('Load data successfully');
    }
});



Share/Bookmark

No comments:

Post a Comment