This could be a novice question, but here goes…
Why do we use data**.d** when we have to read data from a jquery to web-service call?
What is the significance of the .d?
Is there any supporting documentation for the same?
Updated : comments in bold
Thanks,
Sashidhar Kokku
The “.d” is a security feature that Microsoft (and other venders) added in ASP.NET 3.5’s version of ASP.NET AJAX (and other frameworks). By encapsulating the JSON response within a parent object, the framework helps protect against a “JSON hacking” XSS vulnerability.
http://haacked.com/archive/2009/06/25/json-hijacking.aspx
From the article: