Using a jQuery Flickr Feed Plugin from http://www.gethifi.com/blog/a-jquery-flickr-feed-plugin.
They are using "opening image in parent window" where we can see only image and one of other option is in lightbox.
But how can we open a flickr photo in new window while the link should be its original flickr page..
Open a link in a new window with the target attribute:
<[a] href="//google.com" target="_blank">Google in New Window</[a]>
Google in New Window
For your case, you'd want to add that attribute to the template:
$('#basicuse').jflickrfeed({ limit: 14, qstrings: { id: '44802888@N04' }, itemTemplate: '' + '<[a] href="{{image_b}}" target="_blank"><[img] src="{{image_s}}" alt="{{title}}" /></[a]>' + '' });
I apologize for the braces [], as CSS-Tricks is processing the code within a code block.
Using a jQuery Flickr Feed Plugin from http://www.gethifi.com/blog/a-jquery-flickr-feed-plugin.
They are using "opening image in parent window" where we can see only image and one of other option is in lightbox.
But how can we open a flickr photo in new window while the link should be its original flickr page..
Open a link in a new window with the target attribute:
Google in New Window
For your case, you'd want to add that attribute to the template:
I apologize for the braces [], as CSS-Tricks is processing the code within a code block.