Journeys_WantHome/Views/Home/Dashboard.cshtml

24 lines
641 B
Plaintext

@*
For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
*@
@{
Layout = "_LooperLayout";
}
@section Style {
}
@section Script {
<script src="~/assets/javascript/custom/dashboard.js?v=1"></script>
<script>
const numberInput = document.getElementById('myNumberInput');
numberInput.addEventListener('input', function (event) {
const value = event.target.value;
const formattedValue = value.replace(/\D/g, '').replace(/\B(?=(\d{3})+(?!\d))/g, ',');
event.target.value = formattedValue;
});
</script>
}