![]() |
Submit a form without the page reload
Hi everybody,
Please help me to make form submission without reload the page using ajax. please share your suggestion. Thanks. |
using jquery with form posting, this can be used for various other features too other than form function.
|
You can use preventDefault() method
$('#myForm').submit(function(event){ event.preventDefault(); $.ajax({ ... }); }) |
All times are GMT -7. The time now is 06:18 AM. |
Powered by vBulletin Copyright © 2020 vBulletin Solutions, Inc.