Well I am trying to submit a form by pressing enter but not displaying a submit button. I don't want to get into JavaScript if possible since I want everything to work on all browsers (the only JS way I know is with events).

Right now the form looks like this:

<form name="loginBox" target="#here" method="post">
    <input name="username" type="text" /><br />
    <input name="password" type="password" />
    <input type="submit" style="height: 0px; width: 0px; border: none; padding: 0px;" hidefocus="true" />
</form>

Which works pretty well. The submit button works when the user presses enter, and the button doesn't show in Firefox, IE, Safari, Opera and Chrome. However, I still don't like the solution since it is hard to know whether it will work on all platforms with all browsers.

Can anyone suggest a better method? Or is this about as good as it gets?

link|improve this question
feedback

10 Answers

up vote 22 down vote accepted

Try:

<input type="submit" style="position: absolute; left: -9999px"/>

That will push the button waaay to the left, out of the screen. The nice thing with this is, you'd get graceful degradation when CSS is disabled.

Update - Workaround for IE7

As suggested by Bryan Downing:

<input type="submit" style="position: absolute; left: -9999px; width: 1px; height: 1px;"/>
link|improve this answer
1  
I'll try that, thanks! – PythonPower Jan 25 '09 at 21:06
Anyone having trouble with this in IE 7? I get a huge submit bar that runs the entire width of the page with this solution. I've had to go the JS route as a result. Any suggestions? – Erebus Jul 22 '10 at 18:48
2  
Just tried this solution in IE7 with the same result as Erebus. The following code fixes it: position: absolute; width: 1px; height: 1px; left: -9999px; – Bryan Downing Nov 3 '10 at 1:01
What a horrible hack :( why is HTML like this in the first place? Is there a good reason for enter not to work in this case? – nornagon Apr 10 '11 at 7:40
@nornagon: If you feel that this hack is horrible, feel free to suggest a less horrible one. HTML is what it is... – Ates Goral Apr 10 '11 at 21:07
show 3 more comments
feedback

Have you tried this ?

<input type="submit" style="visibility: hidden;" />

Since most browsers understand visibility:hidden and it doesn't really work like display:none, I'm guessing that it should be fine, though. Haven't really tested it myself, so CMIIW.

link|improve this answer
thanks strager for the edit. – andyk Jan 26 '09 at 11:13
Yes - this works on chrome, unlike using display:none;. – Gary van der Merwe Mar 25 '11 at 9:30
feedback

I think you should go the Javascript route, or at least I would:

<script type="text/javascript">
// Using jQuery.

$(function() {
    $('form').each(function() {
        $('input').keypress(function(e) {
            // Enter pressed?
            if(e.which == 10 || e.which == 13) {
                this.form.submit();
            }
        });

        $('input[type=submit]').hide();
    });
});
</script>


<form name="loginBox" target="#here" method="post">
    <input name="username" type="text" /><br />
    <input name="password" type="password" />
    <input type="submit" />
</form>
link|improve this answer
1  
nice one, tested and working fine. But before trying something like this, remember that submitting form via Javascript won't cause some browsers to offer the password saving stuff. – andyk Jan 26 '09 at 11:35
This will cause the submit button to appear for a moment (until the page loads and the JS runs). – nornagon Apr 10 '11 at 7:34
A keypress is also triggered for a selection from autocomplete, i.e. if the user is inputting an email address and he/she selects a previously given one from the browser's autocomplete by hitting enter, then your form will submit. Not what your users will expect. – cburgmer Mar 11 at 10:08
feedback

AFAIK, browsers won't set focus to hidden elements -- though, I'm not sure if it'll then disable [Enter] submitting (FF3 and IE7 work).

<input type="submit" style="display: none;" />
link|improve this answer
Doesn't work on IE6 (which might be a big deal). – Ates Goral Jan 25 '09 at 13:46
or chrome - i think this idea is out – Simon_Weaver Nov 7 '09 at 5:36
Yeah, sounds like support for this is going away: developers.enormego.com/view/… – natevw Jul 28 '11 at 17:34
feedback

Instead of the hack you currently use to hide the button, it would be much simpler to set visibility: collapse; in the style attribute. However, I would still recommend using a bit of simple Javascript to submit the form. As far as I understand, support for such things is ubiquitous nowadays.

link|improve this answer
1  
Doesn't hide it on IE6. – Ates Goral Jan 25 '09 at 13:47
Ah yes, it's always IE6 forcing us to do nasty hacks... – Noldorin Jan 26 '09 at 11:43
feedback

You could try also this

<INPUT TYPE="image" SRC="0piximage.gif" HEIGHT="0" WIDTH="0" BORDER="0">

You could include nonexistent image, or image with width/height = 0 px

link|improve this answer
feedback

Use following code, this fixed my problem in all 3 browsers (FF, IE and Chrome):

<input  type="submit" name="update" value=" Apply " 
    style="position: absolute; height: 0px; width: 0px; border: none; padding: 0px;"
    hidefocus="true" tabindex="-1"/>

Add above line as a first line in your code with appropriate value of name and value.

link|improve this answer
Where is the code you promised? – MPi Nov 14 '11 at 10:16
@MPi it was just not formatted as code. – stema Nov 14 '11 at 10:21
This is brilliant. it works perfectly. – Mystere Man Jan 30 at 23:20
feedback

For those who have problems with IE and for others too.

{
    float: left;
    width: 1px;
    height: 1px;
    background-color: transparent;
    border: none;
}
link|improve this answer
feedback

This is my solution, tested in Chrome, Firefox 6 and IE7+:

.hidden{
    height: 1px;
    width: 1px;
    position: absolute;
    z-index: -100;
}
link|improve this answer
feedback

I can't think of any reason to hide the submit button. It doesn't look like a good idea from a usability point of view.

link|improve this answer
It is a quick login box and having the button clutters that. – PythonPower Jan 25 '09 at 21:05
@PythonPower, It's still good to have a button regardless. You can style it to make it compact, or even use an image. "Go" is often used/acceptable if the login box is already labeled. – strager Jan 25 '09 at 22:16
agree with strager. There's still a handful of people that must reach for their mouse after entering anything into a web form. But it's always good to know ways of doing something. – andyk Jan 26 '09 at 11:21
since I am web savvy i try to avoid pressing enter in forms (subconsciously mostly) becasue i know of the surrounding issues and dont always expect it to work reliably. just a little arrow pointing to the right in a circle is what i'd do – Simon_Weaver Nov 7 '09 at 5:38
feedback

Your Answer

 
or
required, but never shown