JQuery JavaScript Tutorial

< html lang="en">

  
  
  
  
  
  
  
    $(function() {
        $("#drag").draggable();
        
        //define function to toggle draggability
        function toggle(action) {
          (action == "destroy") ? $("#drag").draggable(action).removeClass("drag") : $("#drag").draggable(action);   
        } 
          
        //define click handler for buttons
        $("button").click(function() {
          toggle($(this).attr("id"));
        });
    });
  


    Disable
    Enable
    Destroy
    asdf