Advertisement
bongzilla

Untitled

May 9th, 2022
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <script>
  2. $(document).ready(function(e) {
  3. $("body").on("click", ".delivery-radio", function(e) {
  4. let currentIndex = $(this).index(".delivery-radio");
  5. if (currentIndex === 0) {
  6. $("#billing_address_1").val("");
  7. }
  8. });
  9.  
  10. $("body").on("click", ".delivery-radio", function(e) {
  11. let currentIndex = $(this).index(".delivery-radio");
  12. if (currentIndex === 1) {
  13. $("#billing_address_1").val("Самовывоз");
  14. }
  15. });
  16. });
  17. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement