We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6584510 commit a5882e2Copy full SHA for a5882e2
README.md
@@ -0,0 +1,31 @@
1
+## Copy paste filter label (can retain the specified label)
2
+#### HTML code
3
+```html
4
+<div class="con" contenteditable="true"></div>
5
+```
6
+#### JS code
7
+```javascript
8
+$(".con").bind("paste", function(){
9
+ var _this = $(this);
10
+ setTimeout(function(){
11
+ var con = _this.html();
12
+ var i, match;
13
+ match = con.match(/<[^>]+>/gi);
14
+ if (match) {
15
+ for (i in match) {
16
+ if (!match[i].match(/<(input|div|br).*?(?:>|\/>)/gi)) {
17
+ con = con.replace(match[i], '');
18
+ }
19
20
21
+ match = con.match(/{[^}]+}/gi);
22
23
24
25
26
27
28
29
+ _this.html(con);
30
+ }, 30)
31
+ })
0 commit comments