Hi, I was confused on how to use the click event in order to call another function within the class.
$.fn.imageareaselect(image)
{
this.click(function(){
$.fn.pinpointImage.add(image);
});
}
The selector that is passed into this function is an image. I wan't to make it so when you click the image it calls that function.