I’m using ion range to get a response, after clicking a button I would like to send the value the ion range is currently set at to a database, what method is best to do this using typescript I assume? The current HTML:
<div class="slider_position">
<ion-range min="1" max="5" start="3" [(ngModel)]="surveyRange" pin = "true" color="raptor2" snaps="true">
<ion-label range-left>1</ion-label>
<ion-label range-right>5</ion-label>
</ion-range>
</div>
Thank you!