I have a series of horizontal div boxes that I need to add the relevant href to link to the next one with anchorlinks. As they are produced dynamically I need to add the href wi
$('.next-video').each(function(index) { $(this).attr('href', '#post' + (index + 2)); });