Cross-Browser Compatability

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Manjunath85
    New Member
    • Jun 2015
    • 1

    Cross-Browser Compatability

    Hi All,
    When i hit the EnterKey on password field, at that time it has to redirect into the home page, but it not redirecting.Bel ow JS code work fine with all the browsers , Except IE11.
    need help.
    Thanks i advace.

    Code:
    <script language="JavaScript">
    function myTranslate(event)
    {
    var event = event || window.event;
     
    if(event== 13)
      {
        submitForm('', 'mainForm');	
      } 
    		  
    }
    </script>
    
    <form>
    <input id = "password"  maxlength="50" type = "password"
    name = "password" width = "250px" onkeypress="JavaScript:myTranslate(event)"/>
    </form>
Working...