Click here to Skip to main content
16,017,944 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I have this code to determine the java values.
HTML
<!DOCTYPE html>
<html>
<body>

<p id="demo">Click the button to determine whether your browser has Java enabled.</p>

<button onclick="myFunction()">click mee </button>

<script>
function myFunction()
{
    var x = "Java Enabled: " + navigator.javaEnabled();
    document.getElementById("demo").innerHTML=x;
}
</script>

</body>
</html>

when i click button the result will display in same browser but i want it to display in IE browser.
Posted
v2
Comments
Charan_Kumar 6-Nov-13 2:17am    
can i know why you need this requirement?
Rayan Khan 6-Nov-13 2:23am    
I am reading registry values thats works only with IE so i want to open that page in IE browser.
I guess it is not possible.
Dhaval Patel 6-Nov-13 8:24am    
I understand that you want to do some native coding on window using IE ActiveX. But It is not possible to open IE tab from other browser. You should find other alternative for that.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900