HTML동적 드롭다운 JavaScript// 파일 로드 1 depth$('#category1').load('../txt/category-data.html #category1-1', function(){ $(this).show()})//2 depth$(document).on('change', '#category1 > select', function(){ $('#category2, .console').empty(); $('#category3').empty(); //data-target의 속성을 꺼내와라 var target = $(this).find('option:selected').attr('data-target'); console.log('target = ' + target); $('#..