I created a Flip toggle Switch with:
<select id="flip1" data-role="flipswitch">
<option value="true">true</option>
<option value="false">false</option>
</select>
my script code looks like this:
<script>
$( "#flip1").change(function(){
alert("flip");
});
</script>
but if I change the Button, nothing happened. Maybe someone can help me. Thank you