Remove element by its contents
Description
The following code shows how to remove element by its contents.
Example
<html>
<head>
<script
src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {<!-- w ww . ja v a 2s . co m-->
$("p").remove(":contains('Hello')");
});
</script>
</head>
<body>
<p class="hello">Hello</p>
</body>
</html>