Olaf Bosch schrieb:
> How I can let the grabbeing xml in browser explain?
> With the .html give me *[object XMLDocument]*
>
> The Function are:
>
> $.ajax({
> type: "GET",
> url: "url.xml",
> dataType: "xml",
> success: function(msg){
> $("#content").html(msg);
> }
> });
>
>
If you need html, tell $.ajax to get it for you:
$.ajax({
...
dataType: "html",
sucess: function(html) {
$('#content').html(html);
}
});
--
Jörn Zaefferer
http://bassistance.de
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/