jQuery AJAX 로 시도, 시군구, 읍면동 동적으로 데이터를 가져오는 샘플입니다. 타 도메인의 데이터를 가져오는 예제입니다. <!doctype html> <html lang=”ko”> <head> <meta charset=”utf-8″> <meta http-equiv=”X-UA-Compatible” content=”IE=edge”> <meta http-equiv=”Cache-Control” content=”no-cache”/> <meta http-equiv=”Expires” content=”0″/> <meta http-equiv=”Pragma” content=”no-cache”/> <script src=”http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js”></script> <script> var curLevel = 0; $(document).ready(function(){ getLocation(0); }); function myPOST(v) { var arr = v; if(curLevel == 0) {…