Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. /*
  2. * HIGHLIGHT WHEN ONCLICK RADIO
  3. * ----------------------------------------------- */
  4. $(document).ready(function() {
  5. $(".table-description tr").on("click",function() {
  6. if($(this).find('input[type="radio"]').is(':checked')) {
  7. $('.table-description tr').removeClass('tr-highlight');
  8. $(this).addClass('tr-highlight');
  9. }
  10. });
  11. });
  12.  
  13.  
  14. <table class="table table-bordered table-gray table-description">
  15. <thead>
  16. <tr>
  17. <th>
  18. カラー/サイズ
  19. </th>
  20. <th>
  21. 在庫
  22. </th>
  23. </tr>
  24. </thead>
  25.  
  26. <tbody>
  27. <tr>
  28. <th>
  29. ブラック/Sサイズ
  30. </th>
  31. <td>
  32. <input type="radio" name="description">
  33. </td>
  34. </tr>
  35. <tr>
  36. <th>
  37. ブラック/Mサイズ
  38. </th>
  39. <td>
  40. <input type="radio" name="description">
  41. </td>
  42. </tr>
  43. </tbody>
  44. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement