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
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
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 your users.json file. In this case, you could do $.getJSON('users.json') to get the content of that JSON file.
Here’s a code example:
<!-- First make sure to include Jquery -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"> </script>
<script>
$(function() {
var users = [];
$.getJSON('users .json', function(data) {
$.each(data.user, function(i, f) {
// Do something here
});
});
});
</script>
For more information about .getJSON check out the official documentation here:
https://api.jquery.com/jQuery.getJSON/
Hope that this helps! Regards, Bobby
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.