jqueryまたは標準のjavascriptを使用してこれが可能かどうか疑問に思っていました
function myObj (x,y)
{
this.x=x;
this.y=y;
//above doesn't really matter much
// real question below
$(this).click(function(){
//place some javascript fucnction in here to run when something happens
});
}