Reputation: 169
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
Upvotes: 3
Views: 10676
Reputation: 7257
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)
Upvotes: 4