In following code i want to pass id as parameter to multiple url using ajax post method
$.ajax({
type: 'POST',
url: root + "contacts/primary?json",
data: { id: $(this).val() },
success: function (o) {
ko.applyBindings(new DynamicModel(o.primary),document.getElementById("contactPrimaryForm"));
},
dataType: "json"
});
Then, How to do this..?
If i correct understand your question you need this