$('#id').attr('style', "display:'';"); //나타내기$('#id').attr('style', "display:none;"); //숨기기 해석 : 해당 id의 속성에 접근할건데, style에 display를 none를 주거나.. 안주거나 한다.즉, none을 주면 안보이게 되고, ""을 주면 다시 보이게된다. 혹은 해당 id에 hide()나 show()를 해줘도 된다.[출처] [JQUERY] attr() - style의 특정 속성만 바꾸기|작성자 b1ix