• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

Suchbox verbessern

kuscho

Mitglied
Ich möchte das man in die suchbox z.b die Zahl 45 eingibt und dann z.b der Link www.xyz.de/45.html geöffnet wird

Könntet ihr den Code bitte verbessern

HTML-Code:
<div class="searchbox">
<form action="" method="get">
<fieldset><input id="search" placeholder="Geben Sie eine Psalmenzahl ein" type="text" />
<input id="submit" type="hidden" /></fieldset>

</div>
 
Eigeninitiative ist nicht so deine Stärke, oder? :neutral:

HTML:
<!DOCTYPE html>

<html lang="de">

    <head>
        <meta charset="utf-8" />
        <title>Neu</title>
        <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
        <script type="text/javascript">

        $(document).ready(function () {
            $('#demo').submit(function () {
                document.location = 'http://google.de/' + $('#search').val() + '.html';
                return false;
            });
        });

        </script>
    </head>

    <body>
        <div class="searchbox">
            <form id="demo" action="" method="get">
                <fieldset><input id="search" placeholder="Geben Sie eine Psalmenzahl ein" type="text" />
                    <input id="submit" type="hidden" /></fieldset>
            </form>
        </div>

    </body>

</html>
 
Zurück
Oben