Send ajax request from jquery.
It is better to send Ajax requests directly from java script or jquery instead clicking on button from Java Script to send Ajax request.
insecure https protocol IE shows some error if you send clicking on button from java script to send Ajax request
Sample code:-
$j.ajax({
type: "POST",
url: "https://myurl.com/recent"
data: "requstids="+response.request_ids
})
insecure https protocol IE shows some error if you send clicking on button from java script to send Ajax request
Sample code:-
$j.ajax({
type: "POST",
url: "https://myurl.com/recent"
data: "requstids="+response.request_ids
})
Comments
Post a Comment