When the link is opened or copy pasted in any browser apart from chrome, the page should not load is there any it can be done using Javascript of Java? I want my web application to be used only in chrome. Kindly help
Thank you
When the link is opened or copy pasted in any browser apart from chrome, the page should not load is there any it can be done using Javascript of Java? I want my web application to be used only in chrome. Kindly help
Thank you
I think this could work for you: http://www.netzwelt-kali.de/index.php?menuid=28&reporeid=67
This is quite ugly. However, here's some way to do that :
or just with CSS :
body * {
visibility: hidden;
}
@media screen and (-webkit-min-device-pixel-ratio:0) { /* Target only Chrome */
body * {
visibility: visible;
}
}
I definitly don't know why you don't want users to come to your app with their favorite browser.
I would not recommend making a website for only one browser.
However, here are two options for browser detection: