<?php wp_dropdown_categories('show_count=0&selected=-1&hierarchical=1&depth=1&hide_empty=0&exclude=1&show_option_none=Type&taxonomy='.APP_TAX_CAT.'&name=main_cat&id=main_cat'); ?> <select name="sub_cat" id="sub_cat" disabled="disabled"> <option selected="selected" disabled="disabled" value="none">Brand</option> <option>Option 1</option> <option>Option 2</option> </select>
jQuery(function ($)
{
jQuery("#main_cat").change(function()
{
var $mainCat=$('#main_cat').val();
alert('The option with value main_cat ' + $mainCat); //this is to check that it is entering when main_cat is changed
$("#sub_cat").empty();
jQuery("#sub_cat").prop("disabled", true);
});
});
There are currently 1 users browsing this thread. (0 members and 1 guests)