In your body place:
The ID may be what ever you want it to be but that is how you will apply the draw plugin.
In the head or below the content place.
')
$(document).ready(function(){
$("#box").draw();
});
You may specify the width and height when you call “draw()” like so:
$(“#box”).draw({'width':”200px”, 'height':'400px'});
or in the CSS
You may also specify the color as so:
$(“#box”).draw({'color':'#BADA55'});
And that’s it!
Options:
Width: a pixel value (I.E. ’200px’)
Height: a pixel value (I.E. ’200px’)
Color: a hex code or a valid color option (I.E. ‘#BADA55′ or ‘black’)