Skip to content
Advertisement

Trigger AJAX single function for two buttons

I am using 2 buttons to open two separate php pages but I would like to use one function to trigger both the buttons. The AJAX function that gets triggered should check which button was pressed and then open the php page associated with it. Such that “Export Page 1” should open Page 1.php and “Export Page 2” should open Page 2.php. I am able to open one php page with my AJAX function. Now how do I check which button was pressed so I could open the right php page. How do I achieve this?

JavaScript

Advertisement

Answer

Because IDs must be unique, give each button a different ID

JavaScript

you can then give both buttons the same event – this would also work if you gave them both the same class and did the event on that class.

Within the event, store the button id somewhere where it can be picked up later by the modal’s login button.

Because you’re auto-opening the modal, there’s a separation from open-dialog with button1/2 to click login on modal, so they’re not related. You’ll need to store on the modal/global/etc which button was used to open the modal when it’s opened so that you can use that value when you actually login.

Let’s store it on the modal’s login_button:

JavaScript

where this.id will be login1 or login2.

Now when the login_button is clicked, we can see which button it was:

JavaScript

To make this a little more usable (and less maintenance-heavy), you can make some small changes:

  • don’t use an ID on the page button
  • code the destination page onto the page button
JavaScript

then

JavaScript

and in the callback

JavaScript

so when you want to add page3 etc you just add a new input with no code changes and keeps the separation of data (the page1.php) from the code (the js), which is always a goodthing(tm).

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement