Sol find on
De wikiserver
La revisió el 09:56, 7 abr 2016 per Jnoguera (Discussió | contribucions) (Es crea la pàgina amb «<source lang="java"> <html> <head> <title>TODO supply a title</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width…».)
<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>