JSFiddle - React, Tailwind, and code Playground

by Bright RYMER

HTML

<input type="radio" id="IPAddress" name="searchRadioGroup" value="IPAddress" />
<label for="IPAddress">Adresse IP </label>

<input type="radio" id="UserName" name="searchRadioGroup" value="UserName" />
<label for="UserName">Nom d'Utilisateur </label>

<input type="radio" id="MachineName" name="searchRadioGroup" value="MachineName" />
<label for="MachineName">N° Inventaire/Nom Machine</label>
<br />
<input type="text" id="inputSearch" placeholder="Recherche" />
<input type="button" id="btnValider" value="OK" />
<br />
<textarea id="someText" rows="5" cols="70"></textarea>

JavaScript

$(document).ready(function() {    
    $("input[name=searchRadioGroup]:radio").change(function() {
        $("#someText").val($("#someText").val() + $(this).val() + " | ");
    });
});