I have the following web service;
[WebMethod]
public string HelloWorld()
{
return \"Hello World\";
}
It\'s stock st
If your jQuery page isn't being loaded from http://localhost:54473 then this issue is probably because you're trying to make cross-domain request.
Update 1 Take a look at this blog post.
Update 2 If this is indeed the problem (and I suspect it is), you might want to check out JSONP as a solution. Here are a few links that might help you get started: