I have a Javascript file that submits a form and loads an alert etc. Now I want to add functionality to call or get a .php file, I tried using $.get(\"mai
.php
$.get(\"mai
you can use
$('selector').load()
OR
$.ajax();
$.ajax(); is most preferable.