JavaScript
3
Вклад в тег
<input type="submit" value="Нажми меня"/>
<input type="text" style="display: none;" />$("input[type=submit]").click(function() {
$("input[type=text]").toggle();
});