You don't need to set the dataType to xml if you don't want XML. This should work:
$.ajax({
url: "/rgeo/",
dataType: "text",
data: {
x: document.rgeo.x.value,
y: document.rgeo.y.value
},
success: function(data) {
$("#response").val(data);
}
});
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/
