here is the code
<table class="table">
  <tbody>
    <tr>
      <td></td>
      <td>Destination</td>
      <td>Service Charges</td>
      <td>Time Frame</td>
    </tr>
    <tr class="uk">
      <td><input checked="checked" type="radio" name="shiping-method" id="shipping-method" value="1"></td>
      <td>uk</td>
      <td>free</td>
      <td>2-4 working days</td>
    </tr>
    <tr class="uk">
      <td><input type="radio" name="shiping-method" id="shipping-method" value="3"></td>
      <td>uk</td>
      <td>6.00</td>
      <td>next working day</td>
    </tr>
  </tbody>
</table>
these values are not accessible on the main page I am trying to use the following code
$('input[type="radio"]').on('click',function(){
   var value = $(this).val();
   alert($(this).val());
});
 
    