$('div.view-more').on('click', function(e){
e.preventDefault();
$(this).find('div.hidden-box').slideToggle('click');
});
I have a view more button that when I click on it slides down a hidden set of images. However when I try to click the images it doesn't open up a new page in the browser to see it in full view, instead the set of images just toggle up and down. Any way I can only apply the preventDefault only towards the view more button while being able to open up the images in a new tab? thanks