How to check if a user typed in one of several input of the same class, only characters characters from 0 to 9 and points ... not allowing me to only type those values if not typing validate with the event Keyup
$(document).ready(function()
{
$('.input_valores_provisionales').keyup(
function()
{
$(".input_valores_provisionales").each(
function()
{
}
);
}
);
}