error with function in javascript

0

I have people and the following code in javascript:

<script>
$('.valores,#qtd,#qtd_bo').mask('00.000.000,00', {
    reverse: true
});
</script>

It's a mascara plugin, and it works perfectly. But my phpStorm is setting $ to the following error: unresolved function or method $ ()

Does anyone know what's wrong?

    
asked by anonymous 19.05.2016 / 19:08

1 answer

1

I've never used phpStorm, but as far as I understand, if it's working OK, the problem is only in the editor who thinks $ has never been declared or started.

    
19.05.2016 / 19:43