0

i am learning AJAX. i have visual studio 2010 and in that intellisense feature is not showing the open() and send() methods of XMLHttpRequest class.

i have added jquery library files to my page and jquery is working fine but AJAX is not working.

please guide me.

here is a code snippet

var xmlhttp;

function loadevent()
{

    xmlhttp = new XMLHttpRequest();
    xmlhttp.

}

when i press the "." it only shows 7 standard attributes like propertyof, constructor, tostring etc.

Sterling Archer
  • 22,070
  • 18
  • 81
  • 118

1 Answers1

0

You need to add vsdoc files for intellisense. Have a look at the following links...

  1. NuGet 1.6.0- Here they have mentioned vsdoc files for Visual Studio IntelliSense are now included in the core jquery NuGet package. As a result, this pacakge is obsolete and will not be updated past version 1.6

  2. NuGet latest jQuery Package

  3. Independently you can download it from here

Hope it helps...

Bhavik
  • 4,836
  • 3
  • 30
  • 45