jquery add multiple onclick events code example
Example 1: jquery onclick multiple buttons
$('#b1, #b2, #b3').click(function(){
})
Example 2: how to add the click event into two element in jquery
$('.class1').add('.class2').on('click', some_function);