Is it possible to make an image visible when I click in a form field using HTML / jQuery or JavaScript?
This is my form field (in Laravel):
<div class="form-group">
{!! Form::label('twitter', 'Twitter:') !!}
{!! Form::text('twitter', null, ['class'=>'form-control']) !!}
</div>
The html part:
<a href="http://ss">
<img width="16"
src="https://s3.amazonaws.com/htmlsig-assets/round/twitter.png" alt="Twitter">
</a>