JQuery, radio button getting value

jquery

Hay, how can i get the value of this? i.e. which one is selected.

<input type='radio' name="thing" value="on" checked>
<input type='radio' name="thing" value="off">

I cant get the value with

$("input[name='thing']").val()

Thanks

Best Solution

How about:

$("input[name='thing']:checked").val()