1 ajax_example_advanced.inc | ajax_example_advanced_commands_after_callback($form, $form_state) |
Callback for 'after'.
See also
File
- modules/
examples/ ajax_example/ ajax_example_advanced.inc, line 233 - AJAX Commands examples.
Code
function ajax_example_advanced_commands_after_callback($form, $form_state) {
$selector = '#after_div';
$commands = array();
$commands[] = ajax_command_after($selector, "New 'after'...");
$commands[] = ajax_command_replace("#after_status", "<div id='after_status'>Updated after_command_example " . date('r') . "</div>");
return array('#type' => 'ajax', '#commands' => $commands);
}