Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

No Jquery intellisense Support for Visual Studio 2008

I have Visual Studio 2008 Pro. SP1 and Hotfix

KB958502 - JScript Editor support for “-vsdoc.js” IntelliSense doc. files

installed, but still no intellisense Support is available in VS2008.

<script type="text/javascript" src="Scripts/jquery-1.6.1.js">
$("#TextBox1").
</script>

enter image description here

like image 740
jams Avatar asked Jan 20 '23 18:01

jams


1 Answers

I'm NOT sure but shouldn't a tag should have EITHER a 'src' or inline content but not both?

Your code has them both.
Maybe this would work:

<script type="text/javascript" src="Scripts/jquery-1.6.1.js"></script>

<script type="text/javascript">
$("#TextBox1").
</script>
like image 192
Poni Avatar answered Jan 23 '23 16:01

Poni