I am trying to set a radio button. I want set it by using the value or the id.
This is what I\'ve tried.
$(\'input:radio[name=cols]\'+\" #\"+newcol).
Combining previous answers:
$('input[name="cols"]').filter("[value='Site']").click();