I have a form like this <form id='form' action='...'>...</form>
I want to change the action of that form. So I use
$('#form').attr('action', 'http:/....');
but there's an error saying something like 'this element property cannot be
changed'.
Is it possible to change a form action?

