I am trying to submit a form using javascript. Firefox is working fine, but IE complains that the "object does not support this property or method" in the send line of this function:
function submitPGV(formName, action) { var gvString = ""; pgVisibilities.each(function(pair) { gvString += pair.key + ":" + pair.value + ","; }); $('pgv_input').value = gvString; var form = $(formName); form.action = action; form.submit(); }
Called here:
<a href="javascript:submitPGV('ProductGroupVisibility','config/productgroupvis/save')">
Here is the form:
<form id="ProductGroupVisibility" action="save" method="post"> <input type="hidden" name="ows_gv..PGV" id="pgv_input" value=""/> </form>
Any ideas?
Kenny source share