Javascript Intellisense not working
-
I searched through the forum but couldn't find anything that solved my problem. I have visual studio 2008 installed with .NET 3.5 SP1. In an asp.net application I am trying to write an Inline Javascript function. document.write('Hello world'); the intellisens under the script tag doesn't seem to work. Like when I type document . nothing comes.. am I missing something or visual studion doesn't support intellisense for JavaScript ? Thanks
-
I searched through the forum but couldn't find anything that solved my problem. I have visual studio 2008 installed with .NET 3.5 SP1. In an asp.net application I am trying to write an Inline Javascript function. document.write('Hello world'); the intellisens under the script tag doesn't seem to work. Like when I type document . nothing comes.. am I missing something or visual studion doesn't support intellisense for JavaScript ? Thanks
-
-
Hi, thanks for the google link but I couldn't find anything useful there ? can you point me to more appropriate link or something ?
You need to do two things. 1. First you need to verify that whether javascript intellisense is enable in your Visual Studio IDE or not?? To do that just go to Tools->Options->Text Editor->JScript->General section and see it's "Statement Completion" Block. Verify that options "Auto list members" and "Parameter information" are checked. 2. Second is prefer to put your javascript in separate ".js" files. Sometimes it will take time to show you intellisense, when you are using javascript as inline code. HTH
Jinal Desai - LIVE Experience is mother of sage....
-
You need to do two things. 1. First you need to verify that whether javascript intellisense is enable in your Visual Studio IDE or not?? To do that just go to Tools->Options->Text Editor->JScript->General section and see it's "Statement Completion" Block. Verify that options "Auto list members" and "Parameter information" are checked. 2. Second is prefer to put your javascript in separate ".js" files. Sometimes it will take time to show you intellisense, when you are using javascript as inline code. HTH
Jinal Desai - LIVE Experience is mother of sage....
-
Hi, Thanks Jinal for the reply.. I finally found the solution and solution was pretty weird.. I upgraded to Visual Studio 2008 SP1 and now the intellisense in Visual Studio works. Thanks all for looking :)