HTMLボタンに指定するクラス名を教えてください。
<div id='dlg' class='dialog'>
<input type="text" id="client" name="client" />
<button type='button' class='WHAT_CLASS' onclick="afunction()">Cancel</button>
</div>
同じボタンの外観が欲しいjquery ui「レドモンド」スタイルがデフォルトで適用されます
$dlg.dialog({
autoOpen: false,
title: 'Company name',
buttons: {
'Cancel': function() {
$dlg.dialog('close');
}, ......
ありがとう