質問編集履歴
2
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -79,3 +79,9 @@
|
|
79
79
|
|
80
80
|
|
81
81
|
Contact Form 7 add confirm
|
82
|
+
|
83
|
+
|
84
|
+
|
85
|
+
以下の記事を参考に要素が存在するか調べたのですがすべで無いと表示されてしまします。
|
86
|
+
|
87
|
+
[要素が存在するかどうか調べる](http://cly7796.net/wp/javascript/check-if-an-element-exists/)
|
1
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -42,7 +42,39 @@
|
|
42
42
|
|
43
43
|
|
44
44
|
|
45
|
-
###
|
45
|
+
###試したこと
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
①
|
50
|
+
|
51
|
+
```js
|
52
|
+
|
53
|
+
jQuery(document).ready(function($){
|
54
|
+
|
55
|
+
$(document).ready(function(){
|
56
|
+
|
57
|
+
$(".wpcf7c-btn-confirm").click(function(){
|
58
|
+
|
59
|
+
if ( $(".wpcf7-response-output").is(":contains('入力内容に問題があります')") ) {
|
60
|
+
|
61
|
+
$('.contact__flow-area .box02').removeClass('checked');
|
62
|
+
|
63
|
+
$('.contact__flow-area .box01').addClass('checked');
|
64
|
+
|
65
|
+
}
|
66
|
+
|
67
|
+
});
|
68
|
+
|
69
|
+
});
|
70
|
+
|
71
|
+
});
|
72
|
+
|
73
|
+
```
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
### プラグイン
|
46
78
|
|
47
79
|
|
48
80
|
|