function ajax_command_after
Creates a Drupal Ajax 'insert/after' command.
The 'insert/after' command instructs the client to use jQuery's after() method to insert the given HTML content after each element matched by the given selector.
This command is implemented by Drupal.ajax.prototype.commands.insert() defined in misc/ajax.js.
Parameters
$selector: A jQuery selector string. If the command is a response to a request from an #ajax form element then this value can be NULL.
$html: The data to use with the jQuery after() method.
$settings: An optional array of settings that will be used for this command only.
Return value
An array suitable for use with the ajax_render() function.
See also
http://docs.jquery.com/Manipulation/after#content
Related topics
1 call to ajax_command_after()
- ajax_forms_test_advanced_commands_after_callback in modules/
simpletest/ tests/ ajax_forms_test.module - Ajax callback for 'after'.
File
-
includes/
ajax.inc, line 1034
Code
function ajax_command_after($selector, $html, $settings = NULL) {
return array(
'command' => 'insert',
'method' => 'after',
'selector' => $selector,
'data' => $html,
'settings' => $settings,
);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.