I have a Clock model in Backbone:
Clock
var Clock = Backbone.Model.extend({});
I\'m trying to get an instance of that that has the l
var Person = Backbone.Model.extend({urlRoot : '/person/details'}); var myName = new Person({id: "12345"}); myName.fetch();
As a result you make a Ajax request on the
URL http://[domainName]/person/details/id
and you have the JSON response back.
Enjoiiii !!!