jQuery Mobile é uma tecnologia baseada na web usada para fazer conteúdo responsivo que pode ser acessado em todos os smartphones, tablets e desktops. Neste artigo, criaremos um botão de rádio do grupo horizontal usando jQuery Mobile.

Abordagem: adicione scripts jQuery Mobile necessários para seu projeto.

<link rel = ”stylesheet” href = ”http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css” />

<script src = ”http://code.jquery.com/jquery-1.11.1.min.js”> </script>

<script src = ”http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js”> </script>



Exemplo: vamos criar um grupo de botão de rádio horizontal usando jQuery Mobile. Criamos o botão de rádio usando o atributo input type = ”radio” e usamos o atributo data-type = ”horizontal” para criar um botão de rádio do grupo Horizontal.

<!DOCTYPE html>
<html>
  
<head>
    <link rel="stylesheet" href=
"http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
  
    <script src="http://code.jquery.com/jquery-1.11.1.min.js">
    </script>
  
    <script src=
"http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js">
    </script>
</head>
  
<body>
    <center>
        <h1>GeeksforGeeks</h1>
  
        <h4>
            Design a Horizontal group Radio
            Button using jQuery Mobile
        </h4>
  
        <form style="width: 50%;">
            <fieldset data-role="controlgroup" 
                data-type="horizontal">
                <label for="radioButton">Geeks</label>
                <input type="radio" name="radioButton" 
                    id="radioButton" class="custom" checked>
  
                <label for="radioButton1">GFG</label>
                <input type="radio" name="radioButton" 
                    id="radioButton1" class="custom">
  
                <label for="radioButton2">GeeksforGeeks</label>
                <input type="radio" name="radioButton" 
                    id="radioButton2" class="custom">
  
                <label for="radioButton3">Geeks Geeks</label>
                <input type="radio" name="radioButton"
                    id="radioButton3" class="custom">
            </fieldset>
        </form>
    </center>
</body>
  
</html>

Saída: