deselect.js 330 B

12345678910
  1. jQuery(document).ready(function(){
  2. jQuery('.uc_webform-product-grid tbody tr').each(function(){
  3. jQuery(this).append("<td><input type='button' value='Clear' class='clear-radios'></td>");
  4. });
  5. jQuery('.clear-radios').click(function(){
  6. jQuery(this).parent().parent().find('input').attr("checked", false);
  7. });
  8. });