I'm trying to write an AJAX call using jQuery's $.ajax, but I'm not sure I have it correctly, especially the creating HTML part.I'm really new at this, but I'm trying to write in the Javascript file, to create HTML that will list an avatar, name, location on the left hand column, and a date and story in the right hand column.My JSON so far:\[code\]var user = [ {'avatar': 'image' 'author': 'name', 'location': 'location', }, {'date': 'date', 'review': 'review'} ];\[/code\]Attached is the Javascript AJAX file: http://jsfiddle.net/AryX8/I'm pretty sure most of this is not written correctly, as I'm not sure exactly how to grab the JSON stuff and input it as html onto my HTML page. I have an empty div container on my html file so far. That's it. How do I incorporate these 3 documents together, especially how to write the ajax function call with the javascript for creating html in the success: area?If anyone can help out, that would be super!UPDATE:I'm trying to have data in a JSON file. Retrieve that data by way of writing a Javascript/jQuery AJAX call, and have it output "through" my html file(in other words when this html file ie) index.html page is loaded, all the data from the JSON file will show up formatted via the Javascript/jQuery/AJAX success field....Hope I made it clear of what I'm trying to do and hope it can be done.