jQuery Form Plugin by malsup success function not working on IE7, works on IE8
Hello,
I'm trying to submit a form with the jQuery Form Plugin by malsup. I'm fairly positive my code is correct because in IE8 the success function is being called and the background of the boxes are turning green. In IE7 however, The submit function is definitely working as the file is uploaded to the correct place, but the success function is not being called/fired. Any ideas as to why this might be? Do IE7 and IE8 handle this that differently? The function in the success call is just changing a checkbox and combo box background colors to green.
- var optionsvz1 = { target: '#vz1', url: "http://.......com",
data: {rootToUse:"coursevz1"},
success:function(){document.pageForm.vz1check.style.backgroundColor='green';
document.pageForm.coursevz1.style.backgroundColor='green';}}