<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script>
$(function() {
$('input').on('input', function() {
alert(this.getAttribute('data-factor')*this.value)
//в JQ значение можителя будет доступно как $(this).data('factor')
})
});
</script>
</head>
<body>
<input data-factor="7.5" type="number">
</body>
</html>