Clip is not the right word here. Clipping is when you only draw part of an image or path to the screen.
You would call this "hit testing" or "object picking" or "cell detection".
This is just simple math. Each icon is 32 + 2 yellow, so you can do this to find out which cell:
can.addEventListener('mousedown', function(e) {
var mouse = getMouse(e, can);
var x = Math.floor(mouse.x / 34);
var y = Math.floor(mouse.y / 34);
alert(x + (y*16)); // because there are 16 in a row
}, false);
Here's a working example:
http://jsfiddle.net/YH8b8/