jQuery는 John Resig에 의해 2006 년에 만들어졌다.
10년 이상 jQuery는 세계에서 가장 인기있는 자바 스크립트 라이브러리였다.
JavaScript 버전 5 (2009) 이후에는 대부분의 jQuery 유틸리티가 몇 줄의 표준 JavaScript로 해결할 수 있으므로 jQuery를 사용하는게 많이 줄어들고있다.
그래도 jQuery에 대해 간단하게 알아보자.
jQuery CSS
요소 숨기기
jQuery
myElement.hide();
Javascript
myElement.style.display = "none";
요소 표시
jQuery
myElement.show();
Javascript
myElement.style.display = "";
요소 스타일 지정
jQuery
$("#demo").css("font-size","35px");
Javascript
document.getElementById("demo").style.fontSize = "35px";
참고
W3C School - jQuery CSS Styles