.load()
is giving me trouble. I\'m working on a section loader project and I just can\'t seem to fetch the file that I need.
What I am trying t
Your AJAX URLs should be relative to the page you're on, so you want "Pages1.html"
. What you have in the test case (..Pages1.html) will never work, as that's not a valid reference. (Did you mean to do ../Pages1.html?)
./Pages1.html
should work. Tested all accounts for them in the address bar.