[jQuery] Requesting a file in a parent directory with .ajax

[jQuery] Requesting a file in a parent directory with .ajax


Hi there!
If the file I want to to load is in my web root and is called:
loadme.php
And my javascript with all my JQuery code is in:
js/jquery.js
If I call the following function in jquery.js, what's the correct
path?
$.ajax({
url: '../loadme.php',
Will adding the "../" correctly refer it to load from a parent
directory?