Search.../

tooltipLink

Sets or gets the element's tooltip link.

Description

When the element is clicked, the browser navigates to the link location.

The different types of links you can use are:

  • /localPageURL: to another page on your site
  • /: to your sites home page
  • http(s)://<url>: to an external web address
  • wix:document://<location>: to a document stored in the Media Manager
  • mailto:<email-address>?subject=<subject>: to an email
  • tel:<phone number>: to a phone number

Type:

stringRead & Write

Related Content:

Was this helpful?

Get the dashboard info icon's link value

Copy Code
1let link = $w('#myInfoIcon').tooltipLink; // "http://mysite.com"
Set the dashboard info icon's value to a string

Copy Code
1$w('#myInfoIcon').tooltipLink = "https://www.wix.com";