Javascript - Find the .Net framework versions installed on a computer.
By [)ia6l0 iii
Use the following script.
<script language="JavaScript" type="text/javascript">
var versions = navigator.userAgent.match(/\.NET CLR [0-9.]+/g);
if (versions == null)
document.write( "Microsoft .NET is not installed on your PC" )
else
{
document.write( "The following versions of Microsoft .NET are installed on
your PC:<br/>" )
for (i = 0; i < versions.length; ++i)
{
document.write(versions[i] )
document.write( "<br/>" )
}
}
</script>
Related FAQs
You can use the RemoveClass method to remove the style on an element.
You can use Jquery plugin to hightlight text on a web page
Use the each method to loop thru the element collection. The following example loops through the img elements.
We can use the appspot IPAddress provider server , that returns the ip of the requesting client in the Json format. Use the callback function and retrieve the IP Address.
If you hit the following url, you will find the json response.
http://jsonip.appspot.com/
{"ip": "111.22.333.444", "address":"111.22.333.444"}
There are couple of ways to check if jQuery is loaded on a page.
The HTML5 Test website lets you check your browser for HTML5 Compatibility on the various standards and specifications
Javascript - Find the .Net framework versions installed on a computer. (275 Views)