Is it possibe to simply load a php script with a url with js?
$(function() { $(\'form\').submit(function(e) { e.preventDefault(
like this ?
$.get('myPHP.php', function(data) { $('.result').html(data); alert('Load was performed.'); });