// catch enter code in search form in front page
$('#search').keypress(function (e) {
    var str = $('#search').val();
    var url = "default.aspx?search=" + str;
    if (e.keyCode == 13) {
        location.href = url;
    }
});

I don't know why this code doesn't work what I expected " When you enter something in input#search, check if it's not empty then redirect to another page ". I try to enter every line in console without checking event, it works!

How can I fix this and why it doesn't work ? Thanks for your consideration time :)

link|improve this question

64% accept rate
There's nothing wrong with that code (see: jsFiddle). Can you provide an example where it doesn't work? – Christian Varga Dec 12 '11 at 2:21
I don't know why it doesn't work but replacing keyup with keypress, it works now :) – nXqd Dec 12 '11 at 2:35
feedback

2 Answers

up vote 2 down vote accepted

You might try .keyup() instead of .keypress(). Keypress is not an official specification, and can have unfortunate consequences in some browsers.

link|improve this answer
Thanks so much, this solves my problem immediately :) – nXqd Dec 12 '11 at 2:34
Very glad to hear it! :) – Jason T Featheringham Dec 12 '11 at 2:45
feedback

Put your domain including http for location href to work correctly

    // catch enter code in search form in front page
$('#search').keypress(function (e) {
    var str = $('#search').val();
    var domain = "http://www.yourdomain.com";
    var url = domain+"default.aspx?search=" + str;
    if (e.keyCode == 13) {
        location.href = url;
    }
});
link|improve this answer
working example is here dominic-green.com/examples/domain.html – Dominic Green Dec 12 '11 at 2:28
thanks for your example, maybe you should consider jsfiddle next time, it's great :) – nXqd Dec 12 '11 at 2:36
feedback

Your Answer

 
or
required, but never shown

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