Remove next div with JavaScript, without jquery

Viewed 1420

anyone can help me on a things , I have in a page once <nav class='test'> and below a <div> without any class/id, I want to hide/remove <div> element which is in next of <nav> tag , I can do $('.test').next().remove(); but strictly jQuery is not allowed , please give me any trick of JavaScript or CSS, Please note that , i haven’t access to edit any html code only i can add js/css.

Code is looking like this:-

<body class='home'>
    <nav class='test'></nav>
    <div>Want to remove this elements</div>
</body>

Thanks in advance.

3 Answers
Related