i am trying to get the text of the selected drop down
I'm trying:
$(document).ready(function() {
$("#product_category_id").change(function(){
alert($(this).val())
})
});
Also, how do I set option of a drop down to a specific option:
$(document).ready(function() {
$("#product_category_id").change(function(){
//set prodcut_prod_type drop down to option ""
$("#product_prod_type").set
})
});