I want to add a HELP to my code, in case he clicks the word he opens a pop-up showing the details of the fields. But I would like to do this with a .txt file ... Where to open a popup containing .txt text ! I did this in tooltip that opens a small balloon containing some information:
<style> .tooltip {
display: inline;
position: relative;
}
.tooltip:hover:after {
padding: 5px 15px;
width: 220px;
border-radius: 5px;
background: #333;
background: rgba(0, 0, 0, .8);
content: attr(data-title);
position: absolute;
left: 20%;
bottom: 26px;
z-index: 98;
color: #fff;
}
.tooltip:hover:before {
border: solid;
border-color: #333 transparent;
border-width: 6px 6px 0px 6px;
content: "";
position: absolute;
left: 50%;
bottom: 20px;
z-index: 99;
}
</style>
<tr>
<td align="right">
<font face="arial" color="blue" size="-1">Senha do Usuário :</font>
</td>
<td>
<input type="text" align="left" name="tx_senh_usua" size="7" value="SEDS" readonly="true">
<span style="color: blue;" data-title="Senha padrão para novos usuários." class="tooltip">?</span>
</td>
</tr>
Can you call a .txt file when selecting or clicking in the same way?