My webpage is filled with inline-block divs that are contained within a larger div like so:
<div class="container">
<div class="text">Text 1</div>
<div class="text">Text 2 ... rest of the numbers here ...</div>
</div>
These divs wrap around in rows, and I want to be able to delete the first row of them. If only a portion of the first row appears due to scaling, I want to delete just those particular elements.
I'm unsure about which JavaScript method would work best for this task, but here's a JSFiddle for reference. It would be preferable not to use JQuery for this solution.