Click here to Skip to main content
15,895,370 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I want following details only by Jquery.

Major Version
Minor Version
Document Mode
ActiveXControl
JavaApplet
VBScript

What I have tried:

For ActiveXcontrol i got reference Like 
if ("ActiveXObject" in window) { /* Do ActiveX Stuff */ }
else { /* ActiveX doesnt exist, use something else */ }

and For JavaApplet 
navigator.JavaEnabled()

for Above two i am not sure .

please  help me  in that  .

Thanks in advance 
Posted
Updated 21-May-18 1:25am

1 solution

Write

Object.keys(jQuery.browser)[0]
write where u required

because jQuery.browser Will not work in jQuery 1.9 or later unless the jQuery Migrate plugin is included.

insert jquery-migrate jquery file
 
Share this answer
 

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