I’ve a tiddler with an image called ‘Logo.png’
Whem I click on the logo, I will open the browser with Google.
What is missing here?
<$link to=“https://www.google.com/” tooltip=“Google Search”>{{Logo.png}}</$link>
Thanks
Stefan
I’ve a tiddler with an image called ‘Logo.png’
Whem I click on the logo, I will open the browser with Google.
What is missing here?
<$link to=“https://www.google.com/” tooltip=“Google Search”>{{Logo.png}}</$link>
Thanks
Stefan
The very first line in the documentation for the $link
widget (https://tiddlywiki.com/#LinkWidget) says:
The
link
widget generates links to tiddlers. (Use the HTML<a>
element to generate external links).
Thus, for your desired result, use:
<a href="https://www.google.com/" target="_blank" title="Google Search">{{Logo.png}}</a>
Note the use of target="_blank"
so that the link opens in a separate tab/window instead of navigating away from your open TiddlyWiki.