Hi i have this input field
<form action="" method="post">
<input type="text" value="Type Your Email" name="field" class="field"/>
<input type="submit" value="Submit" class="submit" />
</form>
Im triying to show/hide the value when I click on the field. The problem is that I forgot how to reach to the value i've tried
$('.field').click(function(){
$('.field value').toggle();
});
but it doesnt work.