How to pass parameters in GET requests with jQuery
Use data option of ajax. You can send data object to server by data option in ajax and the type which defines how you are sending it (either POST or GET). The default type is GET method Try this $.ajax({ url: “ajax.aspx”, type: “get”, //send it through get method data: { ajaxid: 4, UserID: UserID, … Read more