when a button is clicked it invokes a JavaScript function .. this operation works fine in all browser except IE9. It throws error as argument not optional when the button is clicked As the code is complicated I am giving the the main part and short description of it.
<script type="text/javascript">function removeFilter(){setFormAction('select_a_Form','path')&&submitForm(document.select_a_Form,'_optionRemove');return false;}</script>
setFormActionfunction gets the form name and action path from here and sets the action of the form to this valuesubmitFormmethod submits the value_optinRemoveto a hidden input variable in the form.
What makes IE9 to not recognize this I could not resolve . Should I include any IE specific loop? what makes IE9 to interpret this in a different manner