Я хотел показать изображение, только когда человек начинает печатать в текстовое поле.
т.е.
$('#type').keyup(function(){ //show the images });
HTML
<input type="text" name="type" id="type"> <div id="showimage"></div>
изображение
showimage.jpg
jquery:
$('#type').keyup(function(){ $('#image').show(); });
html:
<img id="image" src="showimage.jpg" style="display: none"/>