Skip to content

Comment on Grub with the partners of Sequoia Capital

Comments

GrubWith.us removes your period as soon as you type it, so if you try to enter (say) 100.00, it is actually a bid for 10,000 -- I consider this a VERY BAD THING in this context.

Beyond that, it's bugged:

    $(".only_numbers").keydown(function(e) {
        var key = e.charCode || e.keyCode || 0;
        // allow backspace, tab, delete, arrows, numbers and keypad numbers ONLY
        return (
           key == 8 || 
           key == 9 ||
           key == 46 ||
           (key >= 37 && key <= 40) ||
           (key >= 48 && key <= 57) ||
           (key >= 96 && key <= 105));
    });
You're able to type ! @ # $ % ^ & * ( ) into .only_numbers boxes.

And you can't press cmd+a to select all, or ctrl+a to go to the beginning of the line, and argh all manner of awful.

Have you dropped them a mail?

AboutSource Built by g1lg1l

Hackerly is an independent reader for Hacker News, built on the public HN API. Not affiliated with Y Combinator.