Well , I have a jquery function, results that I pass a filepath like a parameter, so when I run the code, it seems doesnt find the file. do you have any idea about what happend?
nevertheless, if I remove ” ..\ ” this part, and change the location of my file, it works well. I need that the file is located in the root site, ’cause is shared for various pages.
$.get("..\jobs.xml",{},function(xml){
code inside funcition....
}
See these example in the documentation:
You’re likely to encounter issue in production if you use relative paths. Why do you need them, anyway? What framework are you using?