UI5- Link
Link represents a simple click link for navigation or for initiating any action.
A simple text link with hyperlink.
Click on the link text.
It opens up the href link.
Code Snippet:
// Instantiate a Link
oLink = new sap.ui.commons.Link({
text: “Link to Google”,
tooltip: “Open up Google”,
href: “https://www.google.com”
}).placeAt(“content”);