Skip to main content
Go to Latest
function getValueByRadioActive
import { getValueByRadioActive } from "https://deno.land/x/simple_utility@v2.0.10/mod.full.ts";

Gets value of .checked in group of radio buttons.

Examples

Example 1

const dom = parseDOM("<input type='radio' name='foo' value='1' checked><input type='radio' name='foo' value='2'>");
const result = getValueByRadioActive(dom, "foo");

Parameters

element: Element
name: string

Returns

string