Hello! I need to submit my form to hash (index.php#a=b&c=d instead of (index.php?a=b&c=d). Is there a way to get url before submitting Thanks!
if you have jquery, you can add this code... <script type="text/javascript"> $('form').submit(function() { var form_data = ($(this).serialize()); window.location = "#" + form_data; return false; }); Â </script>Â HTML: Â