jquery.sketchIt plugin: Version 1.0

jquery.sketchIt

Author:

  1. Basic use
  2. Initial settings
  3. Toolbar

Initial settings

Example

html

<div id="ex2"></div>

javascript

<script src="http://code.jquery.com/jquery-2.0.1.min.js"></script>
<script src="src/jquery-ui.min.js"></script>
<script src="src/jquery.mobile.custom.min.js"></script>
<script src="src/jquery.sketchIt.min.js"></script>
<script>
    $(function () {
        $('#ex2').sketchIt({
            color:'#f00',
            width:2,
            cap:'round'
        });
    });
</script>

css

#ex2 {
    height: 200px;
}
Top of page