2

I'm trying to use a button to turn on and off the .selectable behaviour for a div on my page. I can do this using these commands:

$('#selectable').selectable({disabled: true})

or

$('#selectable').selectable("option", "disabled", true)

The functionality works as intended, but the only problem is that it grays out the entire element that was selectable. Enabling selectability removes the grayed-out look, but every time i disable the selectable it grays out.

Does anyone know how to disable selectability as an attribute without graying out the whole element?

sugarmuff
  • 435
  • 5
  • 17

1 Answers1

1

How about just destroying the selectable $( "#selectable" ).selectable( "destroy" ); and when you need it back $( "#selectable" ).selectable();

Musa
  • 96,336
  • 17
  • 118
  • 137