I have this code:
$(\"#test\").siblings(\'p\').remove(); $(\"#test\").remove();
How can I chain this code instead of writing it separately?
$("#test").siblings("p").siblings("#test").remove();