how do i acses .json from a html page with javascript code ? i know how with node but not how with reg js ??? please help y
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi there @yosefrosner123,
What you could do is use Jquery for example.
That will look something like this, let’s say that you have your
index.html
file in the same folder as yourusers.json
file. In this case, you could do$.getJSON('users.json')
to get the content of that JSON file.Here’s a code example:
For more information about
.getJSON
check out the official documentation here:https://api.jquery.com/jQuery.getJSON/
Hope that this helps! Regards, Bobby