Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Small point that might shave a few characters off your CSS and will typically be done automatically be minifiers- you do not need units for zero length measurements. 0px = 0pt = 0em = 0em etc. – pwdst May 12 at 16:30

12 Answers

up vote 56 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;"/>
share|improve this answer
1  
I'll try that, thanks! – PythonPower Jan 25 '09 at 21:06
3  
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
4  
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
6  
@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
5  
@MooseFactory tabindex="-1" – Ates Goral Jul 13 '12 at 16:04
show 7 more comments

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.

share|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
1  
there's just one thing about visibility: hidden: as you can read in w3schools, visibity:none still affects the layout. If you want to avoid this whitespace, the solution with absolute positioning seems to be better for me. – loybert Sep 28 '12 at 15:32

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>
share|improve this answer
2  
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
4  
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 '12 at 10:08

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.

share|improve this answer
@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 '12 at 23:20

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.

share|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

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

share|improve this answer
IMPORTANT: you MUST use a valid image URL or Firefox will show a "Submit Query" text on your page – PH. Dec 12 '12 at 16:45
If you add an image that exists and set height and width to zero, or add a non-existent image then the browser will have to make a wasted GET request for the resource. – pwdst May 12 at 16:35

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.

share|improve this answer
It is a quick login box and having the button clutters that. – PythonPower Jan 25 '09 at 21:05
1  
@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
2  
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

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

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

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

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

try this js function: fast submitter:

all You have to do is only add enterable_form class to the <form> tag and You're set ;)

share|improve this answer

I added it to a function on document ready. If there is no submit button on the form (all of my Jquery Dialog Forms don't have submit buttons), append it.

$(document).ready(function (){
    addHiddenSubmitButtonsSoICanHitEnter();
});
function addHiddenSubmitButtonsSoICanHitEnter(){
    var hiddenSubmit = "<input type='submit' style='position: absolute; left: -9999px; width: 1px; height: 1px;' tabindex='-1'/>";
    $("form").each(function(i,el){
        if($(this).find(":submit").length==0)
            $(this).append(hiddenSubmit);
    });
}
share|improve this answer

Just set the hidden attribute to true:

<form name="loginBox" target="#here" method="post">
    <input name="username" type="text" /><br />
    <input name="password" type="password" />
    <input type="submit" hidden="true" />
</form>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.