Good morning all - new to Jquery $.get and $.ajax and your help is appreciated.
I have created a PHP script functionexchangeRate($exchangeFrom, $exchangeTo)
that uses uses two parameters.
I am trying to call this PHP script with Jquery's $.get function but I can not figure out how to send the two parameters (I feel like a turkey - pun intended).
var getRate = $.get('exchangeRate.php', function(data){
});
Thanks in advance.
Bob Knothe