View Categories

CF7 stop propagation

< 1 min read


  $('.wpcf7 input[type="checkbox"]').on("change", function (e) {
    e.stopPropagation();
  });
  $('.wpcf7 input[type="text"]').on("change", function (e) {
    e.stopPropagation();
  });
  $('.wpcf7 input[type="phone"]').on("change", function (e) {
    e.stopPropagation();
  });
  $('.wpcf7 input[type="tel"]').on("change", function (e) {
    e.stopPropagation();
  });
  $(".wpcf7 textarea").on("change", function (e) {
    e.stopPropagation();
  });
  $('.wpcf7 input[type="email"]').on("change", function (e) {
    e.stopPropagation();
  });
Leave a Reply 0

Your email address will not be published. Required fields are marked *