I have written a perl script I can access from a URL: https://hostname/myweb/myScript.pl?id=1234&stg=13 I get the proper results using the URL
In javascript/jscript, I have tried loading the script ($('#element').load()) - I've tried full ajax calls within a function:
$.ajax({
url: '/myweb/myScript.pl',
type: 'post',
data: {
'id' : '1234',
'stg' : '13'
}
});
I am not having any success. If anyone can point me in the right direction, it would be greatly appreciated!
M