- $('#specsPage').live('pageinit', function (event) {
- $("input[type='radio']:nth-child(2)").attr("checked", "checked").checkboxradio("refresh");
- });
I am running this code on my website. The problem is, none of the radio buttons are being selected. I have tried :first, :even, etc. I have also tried
.attr("checked", true). Is there any reason this is happening? The radio buttons are inside table cells, if that matters.