topical media & game development
mashup-flickr-06-Step-5-lib-js-gallery.js / js
function displayInfo(id)
{
var s = 'id=' + id;
new Ajax.Request('info.php',
{
parameters: s,
method: "post",
onSuccess:function(response)
{
var node = $('photo-info-' + id);
node.innerHTML = response.responseText;
},
onFailure:function(response)
{
alert('Error: ' + response.status + ' ' + response.statusText);
}
});
}
(C) Æliens
20/2/2008
You may not copy or print any of this material without explicit permission of the author or the publisher.
In case of other copyright issues, contact the author.