I have 4 buttons with different id\'s. When i click on them i need to perform one function. So i need something like this:
$(\'#button #button\').click(funct
Separate each id with a comma:
id
$('#button1, #button2, #button3, #button4').click(...)