I have added a Store Locator plugin to a wordpress site and enabled it. The form action relies on jQuery as it bring up a map from Google showing the closest stores.
The client wants a sidebar containing a form with a postcode input that will redirect to the stores page and fill in the postcode input. I am wondering if there is any way to check if the length of the input (on the stores page) and if it isn't empty, auto submit the form.
Essentially, if a user searches for a postcode using the sidebar, when the store page loads and fills in the postcode input it should auto submit the form and display the results (rather than the user having to click submit again)
$_POST['value']. Perform a conditional statement against the$_POST['value']to see if it's empty or not, if it's not empty, then$.submit()whatever the form is. – Ohgodwhy Oct 17 '12 at 17:15