I have the following code which works fine:
<script type="text/javascript">
Parse.initialize("Lvw6b7TPacv0DX949odBhUPo2nqH5az7SPg6qoiD", "PIuBiR1tGtdJ8IDMnX3yEiljW4V3FQjeoEOhmzEW");
var Recipe = Parse.object.extend("UserSignUp");
var recipe = new Recipe();
recipe.save({username: "<?php echo $Username ?>",password: "<?php echo $Password ?>",title: "<?php echo $Title ?>",name: "<?php echo $Name ?>",email: "<?php echo $Email ?>",summary: "<?php echo $Summary ?>"}, {
success: function(object) {
$(".success").show();
},
error: function(model, error) {
$(".error").show();
}
});
However this saves to a usersignup class which I created. Ideally I need the data to be saved the User installation class however I am unable to do so.
How can this be achieved??