I have a very simple jQuery script.. all I want it to do is return the data on the PHP/HTML page but it's not working. The code is below:
function sendData() {
$.post("validation.php", $("#c_form").serialize(), function(data){}, "html");
}
The function is called by an onclick event in the form. I don't get why it is isn't working, very stumped. Any ideas? There are no errors that pop up in the firefox console window.