Documentation
reload
usage
.kaiten("reload", $panel, data, keepChildren)
parameters
$panel : jQuery object, the panel element which content is to be reloaded
data : Object (optional), additional data to pass to the loader function
keepChildren : Boolean (optional), whether to keep or destroy the children panels or not
If additional data is passed, it will be merged with the original load data, replacing any property of the same name.
examples
var $kaiten = $('#container');
var data = { url:"gallery/icons.php", page:1, kTitle:"A very nice collection of icons" }
$kaiten.kaiten('load', 'html.page', data);
var $p = $('#kp1');
$kaiten.kaiten('reload', $p, {page:2});
See also :
load
Create a new panel and display the HTML passed as argument.