1<!doctype html>
2<html lang="en">
3<head>
4 <meta charset="utf-8">
5 <title>contents demo</title>
6 <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
7</head>
8<body>
9
10<p>Hello <a href="https://johnresig.com/">John</a>, how are you doingq?</p>
11
12<script>
13$( "p" )
14 .contents()
15 .filter(function(){
16 return this.nodeType !== 1;
17 })
18 .wrap( "<b></b>" );
19</script>
20
21</body>
22</html>
23
1<!doctype html>
2<html lang="en">
3<head>
4 <meta charset="utf-8">
5 <title>contents demo</title>
6 <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
7</head>
8<body>
9
10<p>Hello <a href="https://johnresig.com/">John</a>, how are you doing?</p>
11
12<script>
13$( "p" )
14 .contents()
15 .filter(function(){
16 return this.nodeType !== 1;
17 })
18 .wrap( "<b></b>" );
19</script>
20
21</body>
22</html>
23