thanks for all the previous help...
I'm trying to display a message when a Form field (set_p_v) is selected to enter/input something.
I've tried this code, but nothing displays:
Any guidance is appreciated
I'm trying to display a message when a Form field (set_p_v) is selected to enter/input something.
I've tried this code, but nothing displays:
CSS:
css:
.info-msg {
color: #059;
background-color: #BEF;
display: none;
}
HTML:
<div class="info-msg">
<i class="fa fa-info-circle"></i>
This is an info message.
</div>
<label class="col-md-12" for="set_p_v">{{LANG set_p_v}}</label>
<div class="col-md-12">
<input id="mySingleFieldTags" name="set_p_v" type="text" placeholder="" class="form-control input-md" autocomplete="off">
</div>
JavaScript:
$( "set_p_v" ).mouseenter(function() { $(".info-msg").css("display","block"); };
Any guidance is appreciated