What is VML?

동영상 부호화, 실감형 미디어 등 차세대 미디어 관련분야를 중점으로 연구합니다.

About VML

MEMBER

Profesor

Get the <button> element with the class 'continue' and change its HTML to 'Next Step...'

1
$( "button.continue" ).html( "Next Step..." )

Doctor

Show the #banner-message element that is hidden with display:none in its CSS when any button in #button-container is clicked.

1
2
3
4
var hiddenBox = $( "#banner-message" );
$( "#button-container button" ).on( "click", function( event ) {
hiddenBox.show();
});

Master

석사 과정 학생 소개

1
2
3
4
5
6
7
8
9
$.ajax({
url: "/api/getWeather",
data: {
zipcode: 97201
},
success: function( result ) {
$( "#weather-temp" ).html( "<strong>" + result + "</strong> degrees" );
}
});

STUDENT