Home
índice
Página anterior

JQuery UI - Botão

Botão A
jQuery Autocomplete Button
<html>
<head>
<title>JQuery Core - Introdução a jQueryUI)</title>

<link rel="stylesheet" type="text/css" href="/css/ui-lightness/jquery-ui-1.10.4.
custom.css" />
/*Obs. O estilo nesse caso é lightness*/
<script type= "text/javascript" src= "/js/jquery-1.10.2.js"></script>
<script type= "text/javascript" src= "js/jquery-ui-1.10.4.custom.min.js"></script>
<script type= "text/javascript">

-----------------------------------------
<a href="#">Botão A</a>
<div id="checks"> <input type= "checkbox" id="check1" /> <label for="check1">azul</label> <input type= "checkbox" id="check2" /> <label for="check2">rosa</label> <input type= "checkbox" id="check3" /> <label for="check3">amarelo</label> </div> <div id="radios"> <input type= "radio" id="radio1" name="radio1" />label for="radio1">Masculino</label> <input type= "radio" id="radio2" name="radio2" /><label for="radio2">Feminino</label> </div> </body> </html>