Revision: 3626
Updated Code
at August 23, 2007 14:35 by tjhanley
Updated Code
//Make the AJAX call
var url = '';
var params = encodeURI('');
new Ajax.Request(url, {
asynchronous: true,
method: "get",
parameters: params + 'type=eval',
onSuccess: function(request){
//evaluate
eval(request.responseText);
},
onFailure: function(request){
}
});
Revision: 3625
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at August 23, 2007 14:26 by tjhanley
Initial Code
//Make the AJAX call
var url = '';
var params = encodeURI('');
new Ajax.Request(url, {
asynchronous: true,
method: "get",
parameters: params + 'type=eval',
onSuccess: function(request){
//evaluate
eval(request.responseText);
},
onFailure: function(request){
}
});
Initial URL
Initial Description
Initial Title
Prototype Ajax Request
Initial Tags
ajax, textmate
Initial Language
JavaScript