1 ajax_example_graceful_degradation.inc ajax_example_dynamic_sections_select_callback($form, $form_state)

Callback for the select element.

This just selects and returns the questions_fieldset.

Related topics

File

modules/examples/ajax_example/ajax_example_graceful_degradation.inc, line 335
Demonstrations of AJAX with graceful degradation.

Code

function ajax_example_dynamic_sections_select_callback($form, $form_state) {
  return $form['questions_fieldset'];
}