Form is not submit using ajax.form submit on click li. Give me some solution
My js code is here
$(document).ready(function(){
$(\'#sortable li\').click(
You can use the ajaxForm/ajaxSubmit functions from Ajax Form Plugin or the jQuery serialize function.
Example:
$("#frmgallery").ajaxForm({url: 'gallery.php', type: 'post'})
or
$("#frmgallery").ajaxSubmit({url: 'gallery.php', type: 'post'})
ajaxForm will send when the submit button is pressed. ajaxSubmit sends immediately.