jquery add onclick to multiple elements code example
Example 1: how to add the click event into two element in jquery
$('.class1, .class2').on('click', some_function);
Example 2: jquery multiple div click
$(document).on("click touchend", ".class1, .class2, .class3", function () {
//do stuff
});