Hi I am trying to dynamically create a selector for jQuery instead of using a static one. The problem is, it is not working predictably/consistently.
I created a fiddle here: http://jsfiddle.net/Cc92f/
If you click run and click in each of the top radio buttons once, they work, but you cannot use the same buttons a second time.
If you click a top button, and then a bottom button, you can no longer click any of the buttons.
You may have to reload it a couple of times to see how different uses break it in different ways.
Thanks you for any and all help!
    $(".concattest").click(function(event)
    {
        var radioid=event.target.id.split("_");
        $('#r_2_'+radioid[2]).attr('checked', 'checked');
        event.preventDefault();
    }); 
 
     
     
    