Hi,
I am new to php.
In my html page there is a #contactform as :
[code]
Enter your message
[/code]
I have shortened by removing classes. Here the submit link is submitContactForm();
function submitContactForm()
{
$.post('plugins/contactForm/contactForm.php',$('#contactForm').serialize(),submitContactFormResponse,'json');
}
There are other files associated with it. A php file also. I am putting it here as the message is getting lengthy.
I don’t know how to make it working, because when I click on Submit button of the form — Nothing happens. It stays there.
I just running the html document, by double clicking and it opens up in Firefox. Do I need some php executor or something like that to make the form working?
Please help.
I will post the other codes that I see related to the form.
Thanks.