I am working with Parse for Javascript, and I have managed to store items in columns in parse called Subject and Message, but my problem is that I would like to display all of them.
Below is the javascript code:
var currentUser = Parse.User.current();
var Message = Parse.Object.extend("Message");
var query = new Parse.Query(Message);
query.equalTo("user", currentUser);
query.find({
success: function(messages) {
}
});
My problem is in relating the javascript code to the html so that it displays all of the message with its subject in a table. Any help would be greatly appreciated.