aheckmann / jquery-ui-lasso

A simple mouse lasso for jQuery ui

Repository from Github https://github.comaheckmann/jquery-ui-lassoRepository from Github https://github.comaheckmann/jquery-ui-lasso

jQuery-ui-lasso

A quick hack of jQuery-ui-selectable to pull out the lasso functionality.

##Example $(document).lasso({ delay: 100, stop: function (event, props) {

    // props is an object containing "top", "left",
    // "width", and "height" which correspond to 
    // the css props of the lasso when the lasso 
    // stopped.

    var 
      $link = $("<div/>", {
        css: props,
        className: "link"
      })
      .appendTo('body')
    ;

  }
});

About

A simple mouse lasso for jQuery ui