id로 특정 요소 가져오기[#1] 이전의 방법 document.getElementById('foo') 추천하는 방법 $('foo') 폼 컨트롤러의 값을 가져오기[#2] var woot = document.getElementById('bar').value var woot = $('bar').value 추천하는 방법 var woot = $F('bar') 스타일 변경하기[#3] 이전의 방법 $('footer').style.height = '100px'; $('footer').style.background = '#ffc'; 추천하는 방법 $('footer').setStyle({ height: '100px', background: '#ffc' }) html 내용 변경하기[#4] 이전의 방법 $('coolestWi..