I need to create masks for a inputs
that I have in the code, and I had already asked about it, but I think the post was outdated and then "forgotten". However what I had gotten with that post was:
HTML:
Within <HEAD>
:
<script src="assets/plugins/jquery.maskedinput.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
Within<BODY>
:
<inputtype="text" name="search" id="search" placeholder="Escreva o número de processo aqui..." required maxlength="5">
Javascript after </HTML>
:
<script type="text/javascript">
$(document).ready(function(){
$("#search").mask("99999");
});
and it still does not work. I already tried to create a new page to test this function but it also did not work. Anyone have any idea what's going on?