function fail() { window.location = "/course/fail.html"; } function getSpecs() { $.getJSON("/course/specs.json",function(specs) { $("body").append("Show SpecsHide Specs"); var spec_list = $("#specs"); spec_list.hide(); $("a.hide_specs").hide(); $("a.specs").click(function() { spec_list.slideToggle("normal",function() { $("a.show_specs").toggle(); $("a.hide_specs").toggle(); }); }); $.each(specs,function(index,spec_data) { var spec = $("
  • ").appendTo(spec_list); $("

    ").appendTo(spec).text(spec_data.message); $("
    ").appendTo(spec).text(spec_data.url);
          $("
    ").appendTo(spec).text(spec_data.example);
        });
      });
    }