Answers for "when uncheck remove value from div javascript"

0

when uncheck remove value from div javascript

$('input[name="shipping"]').click(function () {
  var checked = $(this).is(':checked');
  var value = checked ? $(".shipping .country").val() : '';
  $(".billing .country").val(value);
});
Posted by: Guest on March-27-2021

Code answers related to "when uncheck remove value from div javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language