Answers for "remove item from html jquery"

26

remove item jquery

$( ".hello" ).remove();
Posted by: Guest on March-22-2020
0

jQuery - Remove Elements

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
  $("button").click(function(){
    $("#div1").remove();
  });
});
</script>
</head>
<body>

<div id="div1" style="height:100px;width:300px;border:1px solid black;background-color:yellow;">

This is some text in the div.
<p>This is a paragraph in the div.</p>
<p>This is another paragraph in the div.</p>

</div>
<br>

<button>Remove div element</button>

</body>
</html>
Posted by: Guest on December-06-2020

Code answers related to "remove item from html jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language