I am trying to get jquery to communicate with a web service!!
function Test(item) { $.ajax({ type: \'POST\', url: \'WebService.asmx/Tes
Your web service method is marked with a ScriptMethodAttribute that specifies UseHttpGet = true. Try removing this argument, or setting it to false. This is what is preventing the POST from working.
ScriptMethodAttribute
UseHttpGet = true
false