I have a page that shows incoming stock parts so serial numbers can be entered. I have a JQuery Ajax function that updates the database and hides the line id a serial no is input. No problems here.
I also send an email on unload, again no problems.
What I want to do is to is set a variable to 1 after my ajax function so I can see that there has been an amendment to the stock, and then in the onload function I can see the status of that variable and decide whether or not to send the email.
my set the serial number is :
function updateField(what) {
serial = document.getElementById('serialno_' + what).value;
po = document.getElementById('po_' + what).value;
entry = what;
if (serial != "") {
$("#totalitems").load("stock_ajaxserial.php?id=" + entry + "&stock=" + serial + "&po=" + po);
$("#tr_" + what).hide("slow");
};
}
and my onunload is simply:
function SendEmail()
{
$.get("stock_in_email.php?po=<?php echo $row_rs_po['entry']; ?>&id=<?php echo $row_rs_po['Order_id']; ?>");
}