I am trying to find the correct syntax to pass a varible to my JQuery Post.
var id = empid; $.ajax({ type: \"POST\", url: \"../Webservices/EmployeeS
if you want to send a JSON string to the server
data: "{empid: " + empid + "}"
if you want to send querystring params (?empid=123)
data: {empid : empid}