I am wondering if anyone can give a \"best practices\" response to using blank HTML form actions to post back to the current page.
There is a post asking what a blan
IN HTML 5 action=""
IS NOT SUPPORTED SO DON'T DO THIS. BAD PRACTICE.
If instead you completely negate action altogether it will submit to the same page by default, I believe this is the best practice:
If you are sumbitting the form using php you may want to consider the following. read more about it here.
Alternatively you could use #
bear in mind though that this will act like an anchor and scroll to the top of the page.