I feel as if this issue is pretty simple, so I may be overlooking something pretty straightforward, but I can't seem to find the solution on Facebook. Basically I have two AJAX functions that interface with PHP scripts through the onClick event. Here is how I am laying out the HTML:
onClick = "previousMonth(this.id); monthDisplay_previous(this.id)"
Currently, it is displaying the output from previousMonth(this.id). But if I reverse the function calls and set it up as:
onClick = "monthDisplay_previous(this.id); previousMonth(this.id)"
then it only displays the output from monthDisplay_previous(this.id) -- it just won't run them both. In addition, they both interface with different PHP scripts. I feel like this is enough information to go off of, but if you want me to post more code I will, reluctantly. Any ideas?