I'm facing an issue with the iframe sourced from flickr.
My website includes an embedded flickr iframe to showcase a gallery without the hassle of creating a slider, resizing images, and extracting thumbnails.
Given that this site belongs to a friend who wants to manage his own pictures without frequent requests for updates, I opted for using a flickr iframe. This way, he can create galleries on flickr and I can embed them directly into the website.
Here is the code snippet:
<div class="six columns">
<iframe src="https://www.flickr.com/photos/127583121@N07/15148138666/in/set-72157647343739461/player/" width="500" height="281" frameborder="0" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
</div>
The issue lies in the fact that when a viewer clicks on an image within the iframe, they are redirected to the flickr website, causing them to leave my site.
Is there a way to ensure that when a user clicks on the iframe, the flickr website opens in a new browser window so that the user remains on my site?
Thank you for your help!