Your existing code should work, using nth-child(4n).
DEMO - Your original code working with nth-child(4n)
However, if your expectation is to only append the new div after the 4th element you should use eq(3) instead or you could get unexpected results.
eq() is 0 based so you need to use eq(0) for the first element and so on. So the 4th would be eq(3).
DEMO - insert test div after 4th image using eq(3)
As per your comments even eq() didn't seem to work:
This hasn't worked, unfortunately. Could it be to do with the PHP
generating the items first?
In general try wrapping your code into a document ready function to ensure the code executes only after the DOM is ready, similar to this:
$(document).ready(function(){
$('.each-brewery-image:eq(3)').after('<div>Test</div>');
});
If your code is injecting the HTML after the DOM has been loaded through some other action you need to execute the desired code ones the elements are in the DOM to apply the changes.
Why use eq(3) if nth-child(4)/nth-child(4n) seems to work too?
For general completeness I thought adding this section could be useful to any future users coming across this question who might have issues using nth-child().
Using nth-child() will match all elements of the selector preceding the last element nth-child() is called on.
nth-child(x) - not using n
For example if you have 2 ul with several li each then $('ul li:nth-child(2)') will select the second element in both uls. Which would be the same as $('li:eq(1)', 'ul').
DEMO - Select second element in each ul using $('ul li:nth-child(2)')
DEMO - Same result as above using $('li:eq(1)', 'ul')
nth-child(xn) - using n
Using $('ul li:nth-child(2n)') on the other hand will match every second li in both uls. That is because n is used like a counter.
DEMO - Select every second element in each ul using $('ul li:nth-child(2n)')
:eq(3)instead of:nth-child(4n)– Explosion Pills Jan 31 at 23:36