// JavaScript Document

$(document).ready(function(){
  $.ajax({
    type: "GET",
    url: "xmlfile.aspx?id=1",
    dataType: "xml",
    success: function(xml) {
      $(xml).find("gloss").each(function() {
        $("dl#glossary").append('<dt>'+$(this).attr("term")+'</dt>');
        $("dl#glossary").append('<dd>'+$(this).text()+'</dd>');
      });
    }
  });
});