identifier
identifier is used to write down notes of animations, actions and anything we find important to make note of
identifier is a visual reference

selector
target an object by id (#) or class (.) or element
the full range on selectors is beyond the scope of this manual
for an in depth on selectors simplified see here
•••• var: string

type
with type we condition what we want to disable
1. If we want to disable a core like a draggable, droppable or resizable, then that's what we choose
2. If we want to disable an event like   click or mouseover or submit etc   we choose   off
3. If we want to disable both, event and core, we can also choose   off   and set the property   event   to   all
NOTE:  
unbind can also be used instead of    off   -   as of  jQuery 1.7    off    is encouraged in favor of    unbind

event
with the event   property we can condition which event to disable
ie. unbind a click or a mouseover , or if we want to disable a core we use   destroy
NOTE: multiple events can be disabled at once   ie.  event: mouseover click
NOTE: all   event and core   can be disabled by setting this property to  all
•••• var: string  |  NOTE: the value   all   is not a variable option it is a property state (=the state is BLANK)

cursor style
set a cursor style for this event
•••• var: string

run on call
run on call is the function name we can give this current function
we can call this function to occur ie. by using a    callback | function
for an in depth on callback and run on call see here

code modification | variable
add function variables  ie.  Call_Disable_1(myVariable)
this function is beyond the scope of this manual   see here

code modification | javascript | before
add javascript, further enhancing this function by adding custom code
this function is beyond the scope of this manual   see here
__________________________________________________________________________
more info on   module | disable   see here Overview
MODULE DISABLE - PROPERTIES
TOOL