I've been researching some Jquery masks to apply to a system, but I noticed that in some examples the mask is displayed when the input is clicked, and in other cases the mask is applied while typing.
How do I get the second case? I'm currently using the code below and got the first option.
<head>
<script type="text/javascript" src="../js/jquery.js"></script>
<script type="text/javascript" src="../js/jquery.maskedinput.js"></script>
</head>
<script type="text/javascript">
$(document).ready(function(){
$("input.estoque").mask("999.99");
});
</script>
<body>
<label for="EST_MIN">
<input type="text" class="estoque" name="EST_MIN" id="EST_MIN" MAXLENGTH="6" value="" />
</label>