It is sometimes handy to check the jQuery version so that if needed then you can write version specific code. There are two ways by which you can find the jQuery version. For example, If jQuery 1.7.2 version is used <script type="text/javascript"src="Script/jquery-1.7.2.js"></script> Method 1 $(document).ready(function() { alert($().jquery); }); It will display 1.7.2 in alert. Another […]
Comments Off on Find and Show jQuery Version