item

Returns the radio button at the specified index. If the index is not specified, the selected index will be used.

Parameters

index Number

The index of the requested radio button.

Returns

jQuery The radio button at the specified index that has been requested.

Example

<ul id="radiogroup"></ul>

<script>
    $("#radiogroup").kendoRadioGroup({
        items: [ "one", "two", "three" ]
    });

    var radioGroup = $("#radiogroup").getKendoRadioGroup();
    // The result can be observed in the DevTools(F12) console of the browser.
    console.log(radioGroup.item(1));
</script>
In this article