Answers for "remove button it self jquery"

26

remove item jquery

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

jquery delete buton

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>remove demo</title>
  <style>
  p {
    background: yellow;
    margin: 6px 0;
  }
  </style>
  <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
 
<p>Hello</p>
how are
<p>you?</p>
<button>Call remove() on paragraphs</button>
 
<script>
$( "button" ).click(function() {
  $( "p" ).remove();
});
</script>
 
</body>
</html>
Posted by: Guest on December-30-2020

Code answers related to "remove button it self jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language