.collision is not a generic collision detection function: it only works for elements created using the .addSprite, .addGroup and .addTilemap methods in gameQuery. Furthermore gameQuery doesn't uses the canvas element but plain simple DOM instead.
If you're using canvas you may want to have a look at friGame that has almost the same API as gameQuery or Crafty that is another popular game engin that can use canvas too. But keep in mind that they are both game engines that will require that you change large portion of your code to use them.
Even if you don't use them you may want to look at their or gamequery's source code to inspire you.