I have been attempting to incorporate the floatlabels feature from floatlabels, but I am encountering difficulties in getting it to work properly.
Here is the sequence of steps I have taken:
Firstly, I include the JS file
<script src="js/floatlabels.min.js"></script>
followed by the script itself
<script>
$('input.floatlabel').floatlabel();
</script>
and then implement the label as shown below
<input type="text" id="test-input" placeholder="This is the placeholder" class="floatlabel">
.... however, despite following the instructions, nothing seems to be happening. Any ideas on why this may be occurring?
Thank you for any assistance you can provide.