Thierry Schellenbach has created a cross site Ajax plugin for the prototype framework 1.5.0. The cross site plugin simply allows you to do Ajax cross site remoting using the dynamic script tag method that other frameworks such as Dojo and jQuery have supported for awhile.
You can implement this by simply setting crossSite: true as a config parameter to Ajax.Request:
new Ajax.Request('myurl', {
method: 'GET',
crossSite: true,
parameters: Form.serialize(obj),
onLoading: function() {
//things to do at the start
},
onSuccess: function(transport) {
//things to do when everything goes well
},
onFailure: function(transport) {
//things to do when we encounter a failure
}
});
Prototype, JavaScript, Plugin, Ajax, Cross site Ajax, Dojo, jQuery

Recommend this story
Email Newsletter
Missing out on the latest diTii.com news? Enter your email below to receive future announcements direct to your inbox. An email confirmation will be sent before your subscription is activated - please check your spam folder if you don't receive this.
About the AuthorDG