Graduate
Source: https://biosci.snu.ac.kr/en/academics/subject/graduate Parent: https://biosci.snu.ac.kr/en
Click on the subject to view details. (C : Credits, L : Lecture, P : Practice)
×
Subject
| Classfication | Classfication | Subject Code | Subject Code |
| C-L-P | C-L-P | Grade | Grade |
Course of instruction
Course of instruction
Close
jQuery(function($) { $(document).ready(function(){ $(".loadsubject").on("click", function(e) { e.preventDefault(); var seqidx = $(this).data('seqidx'); $.ajax({ type: 'GET', url: "/en/academics/subject/graduate?mode=view&seqidx=" + seqidx, timeout: 3000, error: function(xhr, status, error){ alert(error); if(typeof error == "undefined") error = "Unknown"; alert("Fatal Error\n\n" + error); }, //error success: function(data){ if(data) { //데이타가 없는 경우, 세션이 종료된 경우.. var jobj = $.parseJSON(data); $("#mo_title").text(jobj.c_subject_en); $("#subjectdetail").attr("aria-labelledby", jobj.c_subject_en); $("#mo_category").text(jobj.c_category_en); $("#mo_subjectcode").html(jobj.c_subjectcode); $("#mo_credits").html(jobj.c_credits); $("#mo_grade").html(jobj.c_grade); $("#mo_abstract").html(jobj.c_abstract_en); } //data } //success }); //ajax }); }); });