Sol find on

De wikiserver
Dreceres ràpides: navegació, cerca
<html>
    <head>
        <title>TODO supply a title</title>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
        <script>
            $(function(){
                $("input[type='submit']").on("dblclick mouseleave", function(){
                    $("#search").find("label").remove();
                });
                
                
            });
        </script>
    </head>
    <body>
        <form id="search">
			<label for="q">introduce valor!!</label>
			<input type="text" name="q" class="input_text" />
			<input type="submit" value="Go" />
	</form>
    </body>
</html>