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