Is there a way to use a full server path instead of a url when submitting a form via ajax with jquery?
The exemple below doesn\'t work but it will give you an idea o
You can use location to get the current server:
url: location.protocol + "//" + location.host + "/home/full/server/path/file.php"
But you cannot use absolute path for cross-domain requests.