Hello all,

I have created my own module. In which i have a input form with a button of type Submit. Also a theme function to apply theme to this form. But submit button is not working in IE8.

I have tried the #submit as well, please advice me what other things i need to try.

Comments

scrypter’s picture

This is a wild guess, but is there something being displayed over the top of the button making a click impossible? I develop using Firefox then spend hours fixing crazy IE problems. There is a developer tool which lets you examine a page in IE and this might help you. Also try Chrome, Opera and Safari to help isolate the problem.

www.purpleoar.co.nz/scryptik - Javascript editor with syntax error checking
www.purpleoar.co.nz - Web development, Drupal consultancy

kendre_paresh’s picture

thanx for your reply.
I got the solution. :)

I have a container
and one inner
since the problem. What i do is, I have created one function and render the form one below another, like.

$x = drupal_form_get('form1');
 $x .= drupal_form_get('form2');

return $x;