Reputation: 1182
How to open link in other browser? For example:
<a href="sample.html" >click to open in firefox</a>
<a href="sample.html" >click to open in Safari</a>
<a href="sample.html" >click to open in IE</a>
<a href="sample.html" >click to open in Chrome</a>
Is it possible?
Any ideas or suggestion?
Thanks.
Upvotes: 8
Views: 2697
Reputation: 187110
Its strictly a user preference to open web pages in a browser of his choice. You won't be able to control that and better never try to do that.
If you are doing this test your web site in different browsers then take a look at browsershots.org
Upvotes: 2
Reputation: 8484
cool question. With simple html, I do not think it's possible.
If you are looking to test application, you could write OS specific utility.
Upvotes: 3