Take a look at Ajax.Request
new Ajax.Request('/your/url', { onSuccess: function(response) { var html = response.responseText; var div = new Element("div"); div.innerHTML = html; var content = Element.select(div, ".desiredClass"); $("content").appendChild(content); } });
I'm afraid this is the "lower level"
source share