remove() with more than 1 parameter

remove() with more than 1 parameter

hello!
Please, is it possible that method : remove() has moer then one parameter, sth like:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
  5. <script>
  6. $(document).ready(function(){
  7.   $("button").click(function(){
  8.     $("p").remove(".italic", "bold");
  9.   });
  10. });
  11. </script>
  12. </head>
  13. <body>

  14. <p>This is a paragraph in the div.</p>
  15. <p class="italic"><i>This is another paragraph in the div.</i></p>
  16. <p class="bold"><b>This is another paragraph in the div.</b></p>
  17. <button>Remove all p elements with class="italic"</button>

  18. </body>
  19. </html>


Many thanks!!!