Untitled
By: a guest | Sep 9th, 2010 | Syntax:
None | Size: 0.73 KB | Hits: 34 | Expires: Never
function goToFoto(value1,value2,value4)
{ value3="getFoto";
JsHttpRequest.query(
'index.php?mod=gallery_ajax', // backend
{
// pass a text value
foto_num: value1,
user_id: value2,
a: value3,
col:value4
},
// Function is called when an answer arrives.
function(result, errors)
{
document.getElementById("foto").innerHTML = errors;
document.getElementById("mycarousel").innerHTML = result;
// Write the answer.
},
false // do not disable caching
);
}