tags:

views:

31

answers:

2

is this possible?

+1  A: 

You can use jQuery.get() to append data...

jQuery.get("URL", function(data) {
    jQuery("#myElement").append(data);
});
Sohnee
+1  A: 

I believe you have to use .get:

$.get('ajax/test.html', function(data) {
  $('.result').append(data);
});

http://api.jquery.com/jQuery.get/

j.