I am trying to implement multiple buttons that trigger the same ajax function. Each button should be able to pass its own unique ID so that the ajax function can apply its action on a specific element related to that button. Is it possible to include a parameter with the function call? For example, when button 1 is clicked, I want the ajax function to modify textbox 1. Similarly, if button 2 is clicked, the function should change textbox 2 and so on.