Reputation: 801
I have a joomla article that contain a form was createed using rsform component
http://www.kjetilhaugmo.no/videos/36-video-6
use password: 'test' to see the content
everything works as it suppose to work in all browsers but as you expected not in IE :)
the strange thing is the form works on IE8 and IE7 but not in IE9
I looked alot for the issue and found that the tag form does not appear in the generated code on IE9
I already checked the code that responsible for creating the form and every thing is perfect
$formLayout = '<form method="post" '.$CSSId.$CSSClass.$CSSName.$CSSAdditionalAttributes.' enctype="multipart/form-data" action="'.RSFormProHelper::htmlEscape($u).'">'.$formLayout.'</form>';
I'm out of solutions
any help please
Upvotes: 0
Views: 482
Reputation: 3156
A quick search on the www : http://www.rsjoomla.com/support/documentation/view-article/642-my-form-wont-submit-in-internet-explorer-9.html
I looked at your code and you do have the form inside « p » tag. You can start there.
Upvotes: 5