- How to display the content of an XML file in a HTML input with jQuery?
- function displayXMLContent(obj) {
- $.ajax({
- type: "GET",
- url: obj.children().attr('title'),
- success: function (data) {
- $('#inputToEditXML').html(data);
- accessForTextArea(true);
- }
- });
- }