====== 03_jQuery UIでradioをbuttonへ ====== ===== HTML =====
===== Jquery ===== 通常(横にボタンが並ぶ) $("#type").buttonset(); 下記のようにすると、ボタンを縦に並べる事ができる。 $("#type").buttonset(); $("#type label:first").removeClass('ui-corner-left').addClass('ui-corner-top'); $("#type label:last").removeClass('ui-corner-right').addClass('ui-corner-bottom'); $("#type label").each(function(){ $(this).width('100%'); }); $("#type span").each(function(){ $(this).removeClass('ui-button-text'); });