How to get the value form Materialize's Switches?

javascript, materialize

Solution

You have to use .checked For example: Javascript:

document.getElementById('mySwitch').checked

JQuery:

$('#mySwitch').prop('checked')

I hope that I help you.

Problem

I'm using the Materialize library and I'm trying to retrieve the value from the switches component, but it always returns `on` regardless of it being turned on or off. Is there a way to determine if it's switched on or off, programatically?

Original source