View Single Post
Old 11-27-2012, 07:58 AM   PM User | #2
Thyrosis
New Coder

 
Join Date: Nov 2012
Posts: 72
Thanks: 4
Thanked 11 Times in 11 Posts
Thyrosis is on a distinguished road
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
Thyrosis is offline   Reply With Quote