$('input[name="nn"]:checked')
Но если нужно обрабатывать значение, то как-то так:
<script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){
$('input[name="nn"]').click(function(){
$(this).next().text($(this).is(':checked') ? 'checked' : '');
});
});
</script>
<input type="checkbox" name="nn" />
<p></p>