I have a contact form I have used on several sites and it works fine. I have upgraded one site to 3.0.2 and have all the SEO settings to yes. My ajax post no longer works as it now returns
http://mywebsite.com/contact-us?name=blah blah blah. Although it will send the message if I type directly into the address bar (so no problem with form).
Here's my ajax call if anyone could help would be greatly appreciated. I have googled and could not find a solution
$.ajax({
type: "POST",
url: "index.php?option=com_jeprojectmanager&task=messages.send&name=" + name + "&email="
+ email + "&tel=" + tel + "&message=" + message,
success: function(){
$("#contact-form").hide();
$(".clearfix").text('Thank you'+" "+name+" "+'for your enquiry please allow 24 hours
for our team to get back to you');
}
});