Forum Discussion
MarkShnier__You
Qrew Legend
5 years agoHere is an example of a generic hyperlink using an image to lick on
var text Image = "<img src=ttps://images.quickbase.com/si/24/222-point_green.png>";
var text URL = ... the URL goes here ;
"<a href=" & $URL & ">" & $Image & "</a>"
// it was not clear from your post which URL you wanted to direct the click to.
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------
var text Image = "<img src=ttps://images.quickbase.com/si/24/222-point_green.png>";
var text URL = ... the URL goes here ;
"<a href=" & $URL & ">" & $Image & "</a>"
// it was not clear from your post which URL you wanted to direct the click to.
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------
- MarkShnier__You5 years ago
Qrew Legend
btw, if you wanted to open a new tab
var text URL = "http://www.google.com";
var text Words = "search";
"<a href=" & $URL & " target=_blank>" & $Words & "</a>"
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------- SaviNewman14 days agoQrew Trainee
Is there anyway to include image width/height to this code? I keep playing with it and it tells me theres an error in my code.
- PrashantMaheshw4 days agoQrew Captain
var text url ="https://www.google.com";
var text Image = "<img src=https://x.com/icons/checked.png width= 32 height=32>";
"<a href=" & $URL & " target=_blank>" & $image & "</a>"