I have the bootstrap touchspin input spinner initialized and I want to call a function whenever the button is pressed.
I tried this:
$('#spinedit').trigger('touchspin.on.startspin', function () {alert("HI");});
However, it doesn't do anything.
Thanks
You are trying to trigger than bind the event touchspin.on.startspin to the element. The correct way to bind is
$('#spinedit').on('touchspin.on.startspin', function () {alert("HI");});
touchspin.on.startspin - Triggered when the spinner starts spinning upwards or downwards.
For other events you can see their docs(See Triggered events)
Fiddle Demo
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With