How to create a help function

0

How can I implement a feature on jQuery / Javascript to display a question type as soon as the user clicks on a TextBox and when he clicks on that question mark, a Help how can it fill in the field?

    
asked by anonymous 25.10.2017 / 19:12

2 answers

2

$('#input').on('dblclick', function(){
  $('#help').show()
})
#help{
  display: none;
}


a.tooltips {
  position: relative;
  display: inline;
}
a.tooltips span {
  position: absolute;
  width:140px;
  color: #FFFFFF;
  background: #000000;
  height: 30px;
  line-height: 30px;
  text-align: center;
  visibility: hidden;
  border-radius: 6px;
}
a.tooltips span:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  width: 0; height: 0;
  border-top: 8px solid #000000;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}
a:hover.tooltips span {
  visibility: visible;
  opacity: 0.8;
  bottom: 30px;
  left: 50%;
  margin-left: -76px;
  z-index: 999;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script><label>Dedoiscliquesemcasodeduvida<aid="help" class="tooltips">
<img src="https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-help-128.png"width="30">
<span>MENSAGEM;)</span>
  </a>
</label>
<input type="text" id="input">

You can do this with jQuery

    
25.10.2017 / 19:24
0

As I understand it, when you click twice on the text box it should show a help text ...
To do this, seven an id for your textbox and make the field with the interrogation come hidden and through jquery do a function that is called in the double click of that id. Example:

$( "#seu_id" ).dblclick(function() {
  $("#id_da_interrogacao").show();
});
$("#id_da_interrogacao").click(function(){
  //faça aqui seu código para mostrar o texto
})
    
25.10.2017 / 19:22