Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
The alert should only trigger once if the code you posted is all of you code. By the way, 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:56
2  
If your javascript file is included more than once (such as part of some ajax loaded part of the page), you will be binding the change event 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
Yes, unbidding the event just before binding it did work. About the other option, i included searchform.php in my home.php (wordpress theme default homepage) maybe it gets called multiple because of this? – Adige72 Jul 17 '12 at 18:13

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.