Hyperlink text from dataset

It would be great to have a way to set a hyperlink on text connected to a dataset based on dataset url, just like is now possible with images and buttons. Some suggested work arounds don’t work in all cases- like putting the text in a button, which can’t be formatted like text.

2 Likes

I’m in for this. You do it with the ‘onClick’ and stuff. But this is the easy way.

Is it all you want?

$w.onReady(function () {
let textbody = ‘HTTP <a href=“http://wix.com” target=“_blank”; >Link within text’;
$w(‘#text1’).html = textbody;
});