Skip to content Skip to sidebar Skip to footer

Date Picker Data Isn't Being Send To Dropdown

query('SELECT date FROM disabledate'); $db_ddates = $stmt->fetchAll(\PDO::FETCH_ASSOC); $js_ddates = '

Solution 1:

try:

$.ajax({
            type: "POST",
            url: "fetch_products.php",
            data: {categories_id:$('#drop1').val()},
            cache: false,
            beforeSend: function () { 
                $('#products').html('<img src="loader.gif" alt="" width="24" height="24">');
            },
            success: function(html) {    
                $("#products").html( html );
            }
        });
    } 

Post a Comment for "Date Picker Data Isn't Being Send To Dropdown"