I have a very small problem,
I want to submit my code using jQuery on dropdown change:
$("#mydropDown").change(function(){
$("#myForm").submit();
});
but it is not submitting.
I also fired following code in Firebug console:
$("#myForm").submit();
it given me this output
[form#myForm]
I'm not getting what is the problem... :o?
preventDefaultmethod on event object. try to see jQuery bound event handler via$._data($('#myForm')[0]).events.submitmydropDowntypo ofmyDropDown?