Is it possible to put an icon in a toggle button, something like:
$('#toggle-me').toggleButtons({
label: {
enabled: $("<i class='something'></i>"),
disabled: $("<i class='something-else'></i>")
}
});
The motivation here is font-awesome icons inside a toggle button. Any ideas?