how would I automatically submit a form to a php file in jquery. I have this form right now:
<form action = 'add.php' method='get'>
<input type='hidden' name = 'title' value='$title'>
</form>
I ask this because I want to use this to pass a post variable to another php file (ie…going from A to B to C).
1 Answer