Where is the tooltip element?

I am trying to find a tooltip component that was accessible from the library but it seems like it isn’t there, and when I try to access tooltip documentation the site gives me an error.

404 | WeWeb Documentation

Is this a bug or the new UI removed the tooltip element entirely? Is there an alternative?

I don’t believe there is a tooltip component. You could either make one yourself with a div with a position of absolute and a z-index so float over the element you’re hovering over.

Another more simple and less elegant solution is using html attributes, you can do so like this

This will produce a small gray box with the text you input under title.

1 Like