質問編集履歴

1

補足

2015/04/01 08:27

投稿

matometaru
matometaru

スコア43

test CHANGED
File without changes
test CHANGED
@@ -43,3 +43,33 @@
43
43
 
44
44
 
45
45
  $('.carousel') = null; のようにして一発でプラグインを無効にする方法はないですか?
46
+
47
+
48
+
49
+ ** 補足
50
+
51
+
52
+
53
+ 以下のプラグインの delete の処理を実現するためプラグインを無効にする方法を質問しています。
54
+
55
+ https://teratail.com/questions/8004
56
+
57
+ ```lang-javascript
58
+
59
+ if(width < options.switchingSize){
60
+
61
+ console.log("bigPlugin delete ");
62
+
63
+ console.log("smallPlugins add");
64
+
65
+ }
66
+
67
+ else{
68
+
69
+ console.log("smallPlugin delete");
70
+
71
+ console.log("bigPlugin add");
72
+
73
+ }
74
+
75
+ ```