width(), height() 명령 $('셀렉터').width(숫자) $('셀렉터').height(숫자) : 너비/높이 값 지정 숫자는 px로 인식하기 때문에 px를 쓸 필요 없음 innerWidth(), innerHeight() 명령 $('셀렉터').innerWidth(숫자) $('셀렉터').innerHeight(숫자) : 너비/높이 + padding 값 outerWidth(), outerHeight() 명령 $('셀렉터').outerWidth(숫자) $('셀렉터').outerHeight(숫자) : 너비/높이 + padding + border 값 outerWidth(true), outerHeight(true) 명령 $('셀렉터').outerWidth(숫자) $('셀렉터').outerHeight(숫자)..
text() 명령 $('설렉터').text('내용'); : 새로운 내용으로 변경됩니다. ex) $('설렉터').text(); : 괄호 안에 비워두면 글자를 저장합니다. ex) html() 명령 $('설렉터').html('내용'); : 태그를 포함한 내용을 변경합니다. ex)