Hyperlink to an expander somewhere in app

Hi Streamlit-ers!

Is there a way to create a hyperlink to a widget or subheader in a Streamlit app? I am looking for a way to set a hyperlink to an expander which is lower below in my app.

Thanks in advance.

you can add a hyper link like this:

  1. install new package
pip install link-button
  1. create a hyper link
from link_button import link_button
link_button('Click Me!', 'https://docs.streamlit.io/en/stable/')
1 Like

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.