In jQuery, what happens when you have two .children() functions?
var area = image.canvas.children('.image-pinpoint-edit').children('.image-pinpoint-edit-area');
Is it redundant? cant you just do image.canvas.children('image-pinpoint-edit-area')
to get the inner children?