In the loaded div, there is this submit button:
Code:
<input name="discount" type="text" value="" size="5" /> <input name="submit" type="submit" />
Which, essentially, does nothing as far as AJAX is concerned.
Change it to:
Code:
<input name="discount" type="text" value="" size="5" /> <input name="submit" type="submit" onclick="javascript_axaxcall(); "/>
To include a javascriptcall, handle your AJAX/PHP form handling there.
Regards,
Martin