I have determined that my JSON, coming from the server, is valid (making the ajax call manually), but I would really like to use JQuery. I have also determined that the \"post\"
The data parameter is wrong. Here is an example that works:
data: { index: ddl.selectedIndex },
This contructs an object with property called index with value ddl.selectedIndex.
You need to remove the quotes from your data parameter line
Good luck A