searchform.php
<div>
<dl>
<dd>
<select name="shr" id="selection" >
<option value="#All">Select one</option>
<option value="16">One</option>
<option value="17">Two</option>
</select>
</dd>
</dl>
</div>
functions.php:
add_action( 'wp_ajax_nopriv_load-filter', 'ajax_func' );
add_action( 'wp_ajax_load-filter', 'ajax_func' );
function ajax_func () {
$suggestions = array();
$tax = 'tracks';
$args = array ('hide_empty' => 0);
$child_terms = get_terms($tax, $args);
$esen = $_POST['cat'];
foreach ($child_terms as $child_term) :
$parent_of_child = $child_term->parent;
$parent_term = get_term_by('term_id', $esen, 'tracks');
if ($parent_of_child == $esen) {
$suggestion = array();
$suggestion['child_term'] = $child_term->name;
$suggestions[]= $suggestion;
}
endforeach;
echo $suggestion['child_term'];
exit;
}
Js file:
var select = $("#selection");
var zia = $("#selection").val();
select.bind("change",
function(){
$.ajax({
type: 'POST',
url: 'http://localhost/wp/wp-admin/admin-ajax.php',
data: {'action': 'load-filter', cat: zia },
success: function(value) {
alert(zia);
}
});
}
);
I simplified my complicated jquery function but even this code is triggered twice i.e it alerts "zia" variable twice. I've removed one of add_actions to see if it causes double triggering but no luck. Any idea?
var zia = $("#selection").val();needs to be inside of the change event, otherwise you'll never get the current value of the select, just the initial value. – Kevin B Jul 17 '12 at 17:56changeevent more than once, and the function will get called multiple times. Either unbind the event before binding it, or make sure your javascript is only included once. – MrOBrian Jul 17 '12 at 18:01