I'm building a Shiny application and some of my users (not very familiar with this kind of layout) don't understand that the application works with tabs and they just don't see where to go from the Homepage.
That's why I want to display a big infography on the main page, and when they click on it, it automatically activates the second tab. I know how to add a link to an image:
tags(a(img(src="image.png"), href="link.com"))
And I know how to programmatically select a different tab:
updateTabsetPanel(session, inputId="navbar", selected="tab2")
But how to combine those 2 actions? Thanks,