Topic: Linking to modal
                      
                      Grzegorz Bujański
                      free
                        answered 4 years ago
                    
Unfortunately, there is no such built-in option/method. But you can easily achieve it yourself.
const myModalEl = document.getElementById('exampleModal')
const modal = new mdb.Modal(myModalEl)
if (window.location.hash === '#exampleModal') {
  modal.show()
}
                    
                      FREE CONSULTATION
Hire our experts to build a dedicated project. We'll analyze your business requirements, for free.
Status
              Answered
Specification of the issue
              - ForumUser: Free
 - Premium support: No
 - Technology: MDB Standard
 - MDB Version: MDB5 3.9.0
 - Device: Any
 - Browser: Any
 - OS: Any
 - Provided sample code: No
 - Provided link: No
 
Grzegorz Bujański free commented 4 years ago
What do you mean? Can you say something more about this feature?
pawled free commented 4 years ago
I mean entering URL www.website.com/category/#examplemodal which opens modal with id=examplemodal at category page.