Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Sep 9th, 2010 | Syntax: None | Size: 0.73 KB | Hits: 34 | Expires: Never
This paste has a previous version, view the difference. Copy text to clipboard
  1. function goToFoto(value1,value2,value4)
  2. {       value3="getFoto";
  3.         JsHttpRequest.query(
  4.             'index.php?mod=gallery_ajax', // backend
  5.             {
  6.                 // pass a text value
  7.                 foto_num: value1,
  8.                 user_id: value2,
  9.                 a: value3,
  10.                 col:value4
  11.                
  12.                 },
  13.             // Function is called when an answer arrives.
  14.             function(result, errors)
  15.             {
  16.                                
  17.                 document.getElementById("foto").innerHTML = errors;
  18.                 document.getElementById("mycarousel").innerHTML = result;
  19.                 // Write the answer.
  20.  
  21.             },
  22.             false  // do not disable caching
  23.         );
  24. }