My HTML input field has restrictions on certain characters, and I want to display a tooltip or message next to the input field when illegal characters are present. The functionality is working fine, but I'm struggling to implement a satisfactory solution for the tooltip/message to appear.
I have a boolean variable that keeps track of the presence of illegal characters, but so far I haven't found a suitable method to show the tooltip/message effectively.
I experimented with uib-tooltip, but it requires hovering over the input area. I also tried using hidden/displayed span/div/label based on the boolean value, but my CSS expertise isn't sufficient for this task.
The application utilizes AngularJS and Bootstrap 3, and it's important to note that the input field is not part of a form.