Welcome aboard! We are happy you are here and wish you good net-raft!
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
</head>
<body>
<div id="fullcontainer">
<div id="a">a</div>
<div id="b">b</div>
<div id="c">c</div>
</div>
<script>
$(document).ready(function(){
$("#fullcontainer div:first-child").remove();
});
</script>
</body>
</html>
The most helpful JQUERY solutions