I have a use case where i should target a link to be opened in firefox instead of internet explorer. I can't change the default browser settings since it is handled in an organisation level and i don't have any kinda admin rights. The only option left infront of me was trying something in javascript and finally I have read somewhere that we can target edge by prefixing it's name as part of url as shown here
Window.open('microsoft-edge:http://www.google.com')
It is working well and good in all the browsers. But unfortunately i couldn't figure out how to open firefox. Does anyone know how to target firefox ?
Thanks in advance.