Skip to content Skip to sidebar Skip to footer

Javascript Form Field Submit : Object Doesn't Support This Property Or Method In Ie8

i'm getting following error in IE8 Object doesn't support this property or method i'm getting this error on following line fieldName.form.action = 'some action url'; i have aler

Solution 1:

solved the problem by replacing following line

fieldName.form.action = 'some action url';

to

fieldName.form.setAttribute('action','some url');

got answer from here

Solution 2:

Try this code

document.form_name.action='some url';

Solution 3:

document.getElementById('IdOfForm').action='some action URL';

Post a Comment for "Javascript Form Field Submit : Object Doesn't Support This Property Or Method In Ie8"