I have the following line of code:
var code = document.querySelectorAll('article.shop-the-look')[0];
This code stores some markup that I want to insert after a given selector. What I am looking for is more or less the equivalent to the jQuery insertAfter function, but I need it to be Vanilla JS.