jQuery 버튼 여러개의 대화창 만들기
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
HTML
<div id="form'" style="display:none" title=""></div>
Jquery on DOM ready
$('#form').dialog({
modal: true,
buttons:
{ "Cancel": function() {
$(this).dialog("close")
},
"Submit": function() {
//put code here for form submission
}
//버튼 여기에 추가 가능
});
$("#form'").dialog('open');
'Web > javascript / jQuery' 카테고리의 다른 글
[펌] jquery 체크박스 체크 관련 (6) | 2015.04.13 |
---|---|
jQuery에서 string 처리 (split, replace, slice) (6) | 2015.04.13 |
jQuery ID와 Name (6) | 2015.04.13 |
[jQuery] div 안에 체크된 체크박스 목록 받아오는 방법 (6) | 2015.04.13 |
[JAVASCRIPT] 날짜 비교 스크립트. (4) | 2015.04.13 |