On a page I have a google search-field and a separate form for a login. In order to make the search-field work with enter, I included the following script:

$('#searchBox').keydown(function (event) {
    if (event.keyCode == 13) {
        document.location.href = "someTargetPage.html";
    }
});

The only problem is that in that case the form would be sent because the search-field is included within the form, which I can't change due to the architecture of dot net nuke. I tried to prevent that like this:

$('form').delegate('input:submit', 'click',
    function () {
        return false;
});

Now the search-field does work nicely with enter, but the submit-button from the form won't work! Is there a way to check from where the trigger comes and either allow or deny it?

Thx for any tipps!

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Remove your code that stops the input button from working (your delegate on input:submit). You just need to make #searchBox not propagate the event up to the form. It's the search box handler that needs to cancel the event by returning false:

$('#searchBox').keydown(function (event) {
    if (event.keyCode == 13) {
        document.location.href = "someTargetPage.html";
        return false;
    }
});
link|improve this answer
Ah, nice and simple! :-) – sl3dg3 Dec 1 '11 at 10:58
feedback

if you actually want to totally disable the form, just return false on it's onsubmit event:

$("#searchform").live("onsubmit", function(){ return false; });
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.