Button

Transforma elementos HTML em componentes button (botões). Os elementos HTML podem ser "button", "input" (submit ou button, checkbox, radio) e "a". Fazer isso é simples: $("#meu_botao").button();

button: <button id="meu_botao1">Botão 1</button>

input type="submit": <input type="submit" id="meu_botao2" value="Botão 2" />

anchor: Link <a href="#" id="meu_botao3">Link</a>


checkbox:


radio:


Botão com ícone:

$("#meu_botao6").button({ icons: { primary: "ui-icon-locked", secondary: "ui-icon-gear" } });