Hi,
Visual Studio IntelliSense for jquery cannot be working when I put the jQuery UI script tag.
Note the jquery-1.4.2.min.js and jquery-1.4.1-vsdoc.js was renamed to jquery.min.js and jquery.min-vsdoc.js files.
Visual Studio show warning "jquery.min-vsdoc.js: 'chileNodes' is null or not an object @ 5814:4"
Try to remove the jQuery UI script tag and $... can be shown in IntelliSense menu.
- <html>
- <head>
- <title></title>
- <link href="css/jqueryui/ui-lightness/jquery-ui-1.8.1.custom.css" rel="stylesheet" type="text/css" />
- <script language="javascript" type="text/javascript" src="js/jquery-1.4.2/jquery.min.js"></script>
- <script language="javascript" type="text/javascript" src="js/jquery-1.4.2/jquery-ui-1.8.1.custom.min.js"></script>
- </head>
- <body>
- <script language="javascript" type="text/javascript">$.type this will no intelliSense shown.</script>
- </body>
- </html>